mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
22 lines
522 B
Java
22 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));
|
||
|
}
|
||
|
}
|