mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
34 lines
947 B
Java
34 lines
947 B
Java
|
package androidx.transition;
|
||
|
|
||
|
import android.animation.Animator;
|
||
|
import android.animation.AnimatorListenerAdapter;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
class AnimatorUtils {
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
interface AnimatorPauseListenerCompat {
|
||
|
void onAnimationPause(Animator animator);
|
||
|
|
||
|
void onAnimationResume(Animator animator);
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public static void addPauseListener(Animator animator, AnimatorListenerAdapter animatorListenerAdapter) {
|
||
|
animator.addPauseListener(animatorListenerAdapter);
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public static void pause(Animator animator) {
|
||
|
animator.pause();
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public static void resume(Animator animator) {
|
||
|
animator.resume();
|
||
|
}
|
||
|
|
||
|
private AnimatorUtils() {
|
||
|
}
|
||
|
}
|