DynamicAnimation.OnAnimationUpdateListener

public interface DynamicAnimation.OnAnimationUpdateListener


Implementors of this interface can add themselves as update listeners to an DynamicAnimation instance to receive callbacks on every animation frame, after the current frame's values have been calculated for that DynamicAnimation.

Summary

Public methods

abstract void
onAnimationUpdate(
    DynamicAnimation animation,
    float value,
    float velocity
)

Notifies the occurrence of another frame of the animation.

Public methods

onAnimationUpdate

Added in 1.0.0
abstract void onAnimationUpdate(
    DynamicAnimation animation,
    float value,
    float velocity
)

Notifies the occurrence of another frame of the animation.

Parameters
DynamicAnimation animation

animation that the update listener is added to

float value

the current value of the animation

float velocity

the current velocity of the animation