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.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Notifies the end of the animation. | |||||||||||
Notifies the repetition of the animation. | |||||||||||
Notifies the start of the animation. |
Notifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
animation | The animation which reached its end. |
---|
Notifies the repetition of the animation.
animation | The animation which was repeated. |
---|
Notifies the start of the animation.
animation | The started animation. |
---|