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(Animation animation) | |||||
Notifies the end of the animation. |
||||||
void | onAnimationRepeat(Animation animation) | |||||
Notifies the repetition of the animation. |
||||||
void | onAnimationStart(Animation animation) | |||||
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.
animation | The animation which reached its end. |
---|
Notifies the repetition of the animation. This callback is invoked only for animation with repeat mode set to RESTART or REVERSE.
animation | The animation which was repeated. |
---|
Notifies the start of the animation.
animation | The started animation. |
---|
Copyright 2007 Google Inc. | Build 0.9_r1-98467 - 14 Aug 2008 18:48 |