Added in API level 19
  
  
  
  
Summary:
  Methods
  
Animator.AnimatorPauseListener
  public
  static
  
  
  interface
  Animator.AnimatorPauseListener
  
  
  
| android.animation.Animator.AnimatorPauseListener | 
A pause listener receives notifications from an animation when the
 animation is paused or resumed.
Summary
| 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. | 
Public methods
onAnimationPause
    Added in API level 19
  
      
  
    public abstract void onAnimationPause (Animator animation)
Notifies that the animation was paused.
| Parameters | |
|---|---|
| animation | Animator: The animaton being paused.
 This value cannot benull. | 
See also:
onAnimationResume
    Added in API level 19
  
      
  
    public abstract void onAnimationResume (Animator animation)
Notifies that the animation was resumed, after being previously paused.
| Parameters | |
|---|---|
| animation | Animator: The animation being resumed.
 This value cannot benull. | 
See also:
