Animator.AnimatorPauseListener

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 functions

Unit

Notifies that the animation was paused.

Unit

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

Public functions

onAnimationPause

fun onAnimationPause(animation: Animator): Unit

Notifies that the animation was paused.

Parameters
animation: Animator

The animaton being paused.

See also
pause

onAnimationResume

fun onAnimationResume(animation: Animator): Unit

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

Parameters
animation: Animator

The animation being resumed.

See also
resume