Most visited

Recently visited

Added in API level 19

Animator.AnimatorPauseListener

public static interface Animator.AnimatorPauseListener

android.animation.Animator.AnimatorPauseListener
Known Indirect Subclasses


当动画是 pausedresumed时,暂停侦听器从动画接收通知。

也可以看看:

Summary

Public methods

abstract void onAnimationPause(Animator animation)

通知动画已暂停。

abstract void onAnimationResume(Animator animation)

通知之前暂停后动画已恢复。

Public methods

onAnimationPause

Added in API level 19
void onAnimationPause (Animator animation)

通知动画已暂停。

Parameters
animation Animator: The animaton being paused.

也可以看看:

onAnimationResume

Added in API level 19
void onAnimationResume (Animator animation)

通知之前暂停后动画已恢复。

Parameters
animation Animator: The animation being resumed.

也可以看看:

Hooray!