public static interface Animator.AnimatorPauseListener
android.animation.Animator.AnimatorPauseListener |
![]() |
A pause listener receives notifications from an animation when the animation is paused
or resumed
.
See also:
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. |
void onAnimationPause (Animator animation)
Notifies that the animation was paused.
Parameters | |
---|---|
animation |
Animator : The animaton being paused. |
See also:
void onAnimationResume (Animator animation)
Notifies that the animation was resumed, after being previously paused.
Parameters | |
---|---|
animation |
Animator : The animation being resumed. |
See also: