DynamicAnimation.OnAnimationEndListener

public interface DynamicAnimation.OnAnimationEndListener


An animation listener that receives end notifications from an animation.

Summary

Public methods

abstract void
onAnimationEnd(
    DynamicAnimation animation,
    boolean canceled,
    float value,
    float velocity
)

Notifies the end of an animation.

Public methods

onAnimationEnd

Added in 1.0.0
abstract void onAnimationEnd(
    DynamicAnimation animation,
    boolean canceled,
    float value,
    float velocity
)

Notifies the end of an animation. Note that this callback will be invoked not only when an animation reach equilibrium, but also when the animation is canceled.

Parameters
DynamicAnimation animation

animation that has ended or was canceled

boolean canceled

whether the animation has been canceled

float value

the final value when the animation stopped

float velocity

the final velocity when the animation stopped