java.lang.Object | |
↳ | android.animation.AnimatorListenerAdapter |
This adapter class provides empty implementations of the methods from Animator.AnimatorListener
.
Any custom listener that cares only about a subset of the methods of this listener can
simply subclass this adapter class instead of implementing the interface directly.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Notifies the cancellation of the animation. | |||||||||||
Notifies the end of the animation. | |||||||||||
Notifies that the animation was paused. | |||||||||||
Notifies the repetition of the animation. | |||||||||||
Notifies that the animation was resumed, after being previously paused. | |||||||||||
Notifies the start of the animation. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.animation.Animator.AnimatorListener
| |||||||||||
From interface
android.animation.Animator.AnimatorPauseListener
|
Notifies the cancellation of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
animation | The animation which was canceled. |
---|
Notifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
animation | The animation which reached its end. |
---|
Notifies that the animation was paused.
animation | The animaton being paused. |
---|
Notifies the repetition of the animation.
animation | The animation which was repeated. |
---|
Notifies that the animation was resumed, after being previously paused.
animation | The animation being resumed. |
---|
Notifies the start of the animation.
animation | The started animation. |
---|