23 lines
		
	
	
		
			1002 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			1002 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 startId, int endId, float progress) {
 | |
|     }
 | |
| 
 | |
|     @Override // androidx.constraintlayout.motion.widget.MotionLayout.TransitionListener
 | |
|     public void onTransitionCompleted(MotionLayout motionLayout, int currentId) {
 | |
|     }
 | |
| 
 | |
|     @Override // androidx.constraintlayout.motion.widget.MotionLayout.TransitionListener
 | |
|     public void onTransitionStarted(MotionLayout motionLayout, int startId, int endId) {
 | |
|     }
 | |
| 
 | |
|     @Override // androidx.constraintlayout.motion.widget.MotionLayout.TransitionListener
 | |
|     public void onTransitionTrigger(MotionLayout motionLayout, int triggerId, boolean positive, float progress) {
 | |
|     }
 | |
| }
 |