mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
23 lines
947 B
Java
23 lines
947 B
Java
|
package androidx.constraintlayout.motion.widget;
|
||
|
|
||
|
import androidx.constraintlayout.motion.widget.MotionLayout;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public abstract class TransitionAdapter implements MotionLayout.TransitionListener {
|
||
|
@Override // androidx.constraintlayout.motion.widget.MotionLayout.TransitionListener
|
||
|
public void onTransitionChange(MotionLayout motionLayout, int i, int i2, float f) {
|
||
|
}
|
||
|
|
||
|
@Override // androidx.constraintlayout.motion.widget.MotionLayout.TransitionListener
|
||
|
public void onTransitionCompleted(MotionLayout motionLayout, int i) {
|
||
|
}
|
||
|
|
||
|
@Override // androidx.constraintlayout.motion.widget.MotionLayout.TransitionListener
|
||
|
public void onTransitionStarted(MotionLayout motionLayout, int i, int i2) {
|
||
|
}
|
||
|
|
||
|
@Override // androidx.constraintlayout.motion.widget.MotionLayout.TransitionListener
|
||
|
public void onTransitionTrigger(MotionLayout motionLayout, int i, boolean z, float f) {
|
||
|
}
|
||
|
}
|