Android APIs
Added in API level 19
public static interface

Animator.AnimatorPauseListener

android.animation.Animator.AnimatorPauseListener
Known Indirect Subclasses

Class Overview

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

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

public abstract void onAnimationPause (Animator animation)

Added in API level 19

Notifies that the animation was paused.

Parameters
animation The animaton being paused.
See Also

public abstract void onAnimationResume (Animator animation)

Added in API level 19

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

Parameters
animation The animation being resumed.
See Also