Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
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)

Notifies that the animation was paused.

Parameters
animation The animaton being paused.
See Also

public abstract void onAnimationResume ( Animator animation)

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

Parameters
animation The animation being resumed.
See Also