added in version 25.4.0
  
    
belongs to Maven artifact com.android.support:support-dynamic-animation:28.0.0-alpha1
belongs to Maven artifact com.android.support:support-dynamic-animation:28.0.0-alpha1
DynamicAnimation.OnAnimationEndListener
  public
  static
  
  
  interface
  DynamicAnimation.OnAnimationEndListener
  
  
  
| android.support.animation.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 version 25.4.0
      
  
    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 | |
|---|---|
| animation | DynamicAnimation: animation that has ended or was canceled | 
| canceled | boolean: whether the animation has been canceled | 
| value | float: the final value when the animation stopped | 
| velocity | float: the final velocity when the animation stopped | 
