| android.view.animation.Animation.AnimationListener |
An animation listener receives notifications from an animation. Notifications indicate animation related events, such as the end or the repetition 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. |
|||||
Notifies the end of the animation. This callback is invoked only for animation with repeat mode set to NO_REPEAT.
Notifies the repetition of the animation. This callback is invoked only for animation with repeat mode set to REPEAT or REVERSE.
Notifies the start of the animation.