Most visited

Recently visited

Added in API level 19

Animator.AnimatorPauseListener

public static interface Animator.AnimatorPauseListener

android.animation.Animator.AnimatorPauseListener
Known Indirect Subclasses


A pause listener receives notifications from an animation when the animation is paused or resumed.

See also:

Summary

Public methods

abstract void onAnimationPause(Animator animation)

Notifies that the animation was paused.

abstract void onAnimationResume(Animator animation)

Notifies that the animation was resumed, after being previously paused.

Public methods

onAnimationPause

Added in API level 19
void onAnimationPause (Animator animation)

Notifies that the animation was paused.

Parameters
animation Animator: The animaton being paused.

See also:

onAnimationResume

Added in API level 19
void onAnimationResume (Animator animation)

Notifies that the animation was resumed, after being previously paused.

Parameters
animation Animator: The animation being resumed.

See also:

Hooray!