public interface ViewPropertyAnimatorListener
An animation listener receives notifications from an animation. Notifications indicate animation related events, such as the end or the start of the animation.
Modifier and Type | Method and Description |
---|---|
void |
onAnimationCancel(View view)
Notifies the cancellation of the animation.
|
void |
onAnimationEnd(View view)
Notifies the end of the animation.
|
void |
onAnimationStart(View view)
Notifies the start of the animation.
|
void onAnimationStart(View view)
Notifies the start of the animation.
view
- The view associated with the ViewPropertyAnimatorvoid onAnimationEnd(View view)
Notifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
view
- The view associated with the ViewPropertyAnimatorvoid onAnimationCancel(View view)
Notifies the cancellation of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
view
- The view associated with the ViewPropertyAnimator