# Print output for @column tags ?>
public
static
interface
Animator.AnimatorListener
android.animation.Animator.AnimatorListener |
An animation listener receives notifications from an animation. Notifications indicate animation related events, such as the end or the repetition of the animation.
Public methods | |
---|---|
abstract
void
|
onAnimationCancel(Animator animation)
Notifies the cancellation of the animation. |
abstract
void
|
onAnimationEnd(Animator animation)
Notifies the end of the animation. |
default
void
|
onAnimationEnd(Animator animation, boolean isReverse)
Notifies the end of the animation. |
abstract
void
|
onAnimationRepeat(Animator animation)
Notifies the repetition of the animation. |
abstract
void
|
onAnimationStart(Animator animation)
Notifies the start of the animation. |
default
void
|
onAnimationStart(Animator animation, boolean isReverse)
Notifies the start of the animation as well as the animation's overall play direction. |
public abstract void onAnimationCancel (Animator animation)
Notifies the cancellation of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
Parameters | |
---|---|
animation |
Animator : The animation which was canceled. |
public abstract void onAnimationEnd (Animator animation)
Notifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
Parameters | |
---|---|
animation |
Animator : The animation which reached its end. |
public void onAnimationEnd (Animator animation, boolean isReverse)
Notifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
This method's default behavior is to call onAnimationEnd(android.animation.Animator)
. This
method can be overridden, though not required, to get the additional play direction info
when an animation ends. Skipping calling super when overriding this method results in
onAnimationEnd(android.animation.Animator)
not getting called.
Parameters | |
---|---|
animation |
Animator : The animation which reached its end. |
isReverse |
boolean : Whether the animation is playing in reverse. |
public abstract void onAnimationRepeat (Animator animation)
Notifies the repetition of the animation.
Parameters | |
---|---|
animation |
Animator : The animation which was repeated. |
public abstract void onAnimationStart (Animator animation)
Notifies the start of the animation.
Parameters | |
---|---|
animation |
Animator : The started animation. |
public void onAnimationStart (Animator animation, boolean isReverse)
Notifies the start of the animation as well as the animation's overall play direction.
This method's default behavior is to call onAnimationStart(android.animation.Animator)
. This
method can be overridden, though not required, to get the additional play direction info
when an animation starts. Skipping calling super when overriding this method results in
onAnimationStart(android.animation.Animator)
not getting called.
Parameters | |
---|---|
animation |
Animator : The started animation. |
isReverse |
boolean : Whether the animation is playing in reverse. |