public interface AnimatorListener
| 限定符和类型 | 方法和说明 |
|---|---|
void |
onAnimationCancel(ValueAnimator animation)
Notifies the cancellation of the animation.
|
void |
onAnimationEnd(ValueAnimator animation)
Notifies the end of the animation.
|
void |
onAnimationRepeat(ValueAnimator animation)
Notifies the repetition of the animation.
|
void |
onAnimationStart(ValueAnimator animation)
Notifies the start of the animation.
|
void onAnimationStart(ValueAnimator animation)
Notifies the start of the animation.
animation - The started animation.void onAnimationEnd(ValueAnimator 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.void onAnimationCancel(ValueAnimator animation)
Notifies the cancellation of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
animation - The animation which was canceled.void onAnimationRepeat(ValueAnimator animation)
Notifies the repetition of the animation.
animation - The animation which was repeated.