public abstract static class SupportAnimator.SimpleAnimatorListener extends java.lang.Object implements SupportAnimator.AnimatorListener
Provides default implementation for AnimatorListener.
| コンストラクタと説明 |
|---|
SupportAnimator.SimpleAnimatorListener() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
onAnimationCancel()
Notifies the cancellation 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.
|
public void onAnimationStart()
SupportAnimator.AnimatorListenerNotifies the start of the animation.
onAnimationStart インタフェース内 SupportAnimator.AnimatorListenerpublic void onAnimationEnd()
SupportAnimator.AnimatorListenerNotifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
onAnimationEnd インタフェース内 SupportAnimator.AnimatorListenerpublic void onAnimationCancel()
SupportAnimator.AnimatorListenerNotifies the cancellation of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
onAnimationCancel インタフェース内 SupportAnimator.AnimatorListenerpublic void onAnimationRepeat()
SupportAnimator.AnimatorListenerNotifies the repetition of the animation.
onAnimationRepeat インタフェース内 SupportAnimator.AnimatorListener