public static interface Animator.AnimatorPauseListener
android.animation.Animator.AnimatorPauseListener |
Known Indirect Subclasses |
当动画是 paused
或 resumed
时,暂停侦听器从动画接收通知。
Public methods |
|
---|---|
abstract void |
onAnimationPause(Animator animation) 通知动画已暂停。 |
abstract void |
onAnimationResume(Animator animation) 通知之前暂停后动画已恢复。 |
void onAnimationPause (Animator animation)
通知动画已暂停。
Parameters | |
---|---|
animation |
Animator : The animaton being paused. |
也可以看看:
void onAnimationResume (Animator animation)
通知之前暂停后动画已恢复。
Parameters | |
---|---|
animation |
Animator : The animation being resumed. |
也可以看看: