public interface

Animator.AnimatorPauseListener

 androidx.core.animation.Animator.AnimatorPauseListener

Subclasses:

AnimatorListenerAdapter

Overview

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

Summary

Methods
public voidonAnimationPause(Animator animation)

Notifies that the animation was paused.

public voidonAnimationResume(Animator animation)

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

Methods

public void onAnimationPause(Animator animation)

Notifies that the animation was paused.

Parameters:

animation: The animaton being paused.

See also: Animator.pause()

public void onAnimationResume(Animator animation)

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

Parameters:

animation: The animation being resumed.

See also: Animator.resume()