public abstract static class SupportAnimator.SimpleAnimatorListener extends java.lang.Object implements SupportAnimator.AnimatorListener
Provides default implementation for AnimatorListener.
| Constructor and Description |
|---|
SupportAnimator.SimpleAnimatorListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
onAnimationCancel()
Notifies the cancellation of the animation.
|
void |
onAnimationEnd()
Notifies the end of the animation.
|
void |
onAnimationRepeat()
Notifies the repetition of the animation.
|
void |
onAnimationStart()
Notifies the start of the animation.
|
public SupportAnimator.SimpleAnimatorListener()
public void onAnimationStart()
SupportAnimator.AnimatorListenerNotifies the start of the animation.
onAnimationStart in interface SupportAnimator.AnimatorListenerpublic void onAnimationEnd()
SupportAnimator.AnimatorListenerNotifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
onAnimationEnd in interface SupportAnimator.AnimatorListenerpublic void onAnimationCancel()
SupportAnimator.AnimatorListenerNotifies the cancellation of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
onAnimationCancel in interface SupportAnimator.AnimatorListenerpublic void onAnimationRepeat()
SupportAnimator.AnimatorListenerNotifies the repetition of the animation.
onAnimationRepeat in interface SupportAnimator.AnimatorListener