Animator.AnimatorPauseListener

public interface Animator.AnimatorPauseListener

Known direct subclasses
AnimatorListenerAdapter

This adapter class provides empty implementations of the methods from Animator.AnimatorListener.


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

See also
addPauseListener

Summary

Public methods

abstract void

Notifies that the animation was paused.

abstract void

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

Public methods

onAnimationPause

abstract void onAnimationPause(@NonNull Animator animation)

Notifies that the animation was paused.

Parameters
@NonNull Animator animation

The animaton being paused.

See also
pause

onAnimationResume

abstract void onAnimationResume(@NonNull Animator animation)

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

Parameters
@NonNull Animator animation

The animation being resumed.

See also
resume