public static interface SupportAnimator.AnimatorListener
An animation listener receives notifications from an animation. Notifications indicate animation related events, such as the end or the repetition of the animation.
| 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.
|
void onAnimationStart()
Notifies the start of the animation.
void onAnimationEnd()
Notifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
void onAnimationCancel()
Notifies the cancellation of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
void onAnimationRepeat()
Notifies the repetition of the animation.