public class SimpleAnimatorListener extends java.lang.Object implements AnimatorListener
| 构造器和说明 |
|---|
SimpleAnimatorListener() |
| 限定符和类型 | 方法和说明 |
|---|---|
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.
|
public void onAnimationStart(ValueAnimator animation)
AnimatorListenerNotifies the start of the animation.
onAnimationStart 在接口中 AnimatorListeneranimation - The started animation.public void onAnimationEnd(ValueAnimator animation)
AnimatorListenerNotifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
onAnimationEnd 在接口中 AnimatorListeneranimation - The animation which reached its end.public void onAnimationCancel(ValueAnimator animation)
AnimatorListenerNotifies the cancellation of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
onAnimationCancel 在接口中 AnimatorListeneranimation - The animation which was canceled.public void onAnimationRepeat(ValueAnimator animation)
AnimatorListenerNotifies the repetition of the animation.
onAnimationRepeat 在接口中 AnimatorListeneranimation - The animation which was repeated.