| 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 the repetition of the animation. |
|||||||||
|
|
|
Notifies the start of the animation. |
|||||||||
| [Expand]
Inherited Methods
|
|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class java.lang.Object
|
|||||||||||
From interface android.animation.Animator.AnimatorListener
|
|||||||||||
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 the repetition of the animation.
| animation | The animation which was repeated. |
|---|
Notifies the start of the animation.
| animation | The started animation. |
|---|