Class AnimationUtils.AnimationListenerAdapter
- java.lang.Object
-
- com.yoti.mobile.android.common.ui.widgets.utils.AnimationUtils.AnimationListenerAdapter
-
- All Implemented Interfaces:
android.view.animation.Animation.AnimationListener
- Enclosing class:
- AnimationUtils
public abstract static class AnimationUtils.AnimationListenerAdapter extends java.lang.Object implements android.view.animation.Animation.AnimationListenerThis adapter class provides empty implementations of the methods fromAnimation.AnimationListener. Any custom listener that cares only about a subset of the methods of this listener can simply subclass this adapter class instead of implementing the interface directly.
-
-
Constructor Summary
Constructors Constructor Description AnimationListenerAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonAnimationEnd(android.view.animation.Animation animation)voidonAnimationRepeat(android.view.animation.Animation animation)voidonAnimationStart(android.view.animation.Animation animation)
-
-
-
Method Detail
-
onAnimationStart
public void onAnimationStart(android.view.animation.Animation animation)
- Specified by:
onAnimationStartin interfaceandroid.view.animation.Animation.AnimationListener
-
onAnimationEnd
public void onAnimationEnd(android.view.animation.Animation animation)
- Specified by:
onAnimationEndin interfaceandroid.view.animation.Animation.AnimationListener
-
onAnimationRepeat
public void onAnimationRepeat(android.view.animation.Animation animation)
- Specified by:
onAnimationRepeatin interfaceandroid.view.animation.Animation.AnimationListener
-
-