ADD week 5
This commit is contained in:
		
							
								
								
									
										29
									
								
								02-Easy5/E5/sources/androidx/transition/AnimatorUtils.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								02-Easy5/E5/sources/androidx/transition/AnimatorUtils.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,29 @@ | ||||
| package androidx.transition; | ||||
|  | ||||
| import android.animation.Animator; | ||||
| import android.animation.AnimatorListenerAdapter; | ||||
|  | ||||
| /* loaded from: classes.dex */ | ||||
| class AnimatorUtils { | ||||
|  | ||||
|     interface AnimatorPauseListenerCompat { | ||||
|         void onAnimationPause(Animator animator); | ||||
|  | ||||
|         void onAnimationResume(Animator animator); | ||||
|     } | ||||
|  | ||||
|     static void addPauseListener(Animator animator, AnimatorListenerAdapter animatorListenerAdapter) { | ||||
|         animator.addPauseListener(animatorListenerAdapter); | ||||
|     } | ||||
|  | ||||
|     static void pause(Animator animator) { | ||||
|         animator.pause(); | ||||
|     } | ||||
|  | ||||
|     static void resume(Animator animator) { | ||||
|         animator.resume(); | ||||
|     } | ||||
|  | ||||
|     private AnimatorUtils() { | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user