mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 00:52:31 -06:00
21 lines
522 B
Java
21 lines
522 B
Java
package androidx.transition;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class AutoTransition extends TransitionSet {
|
|
public AutoTransition() {
|
|
init();
|
|
}
|
|
|
|
public AutoTransition(Context context, AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
init();
|
|
}
|
|
|
|
private void init() {
|
|
setOrdering(1);
|
|
addTransition(new Fade(2)).addTransition(new ChangeBounds()).addTransition(new Fade(1));
|
|
}
|
|
}
|