public class ViewPropertyAnimatorListenerAdapter extends Object implements ViewPropertyAnimatorListener
ViewPropertyAnimatorListener
. 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.Constructor and Description |
---|
ViewPropertyAnimatorListenerAdapter() |
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.
|
public void onAnimationStart(View view)
Notifies the start of the animation.
onAnimationStart
in interface ViewPropertyAnimatorListener
view
- The view associated with the ViewPropertyAnimatorpublic void onAnimationEnd(View view)
Notifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
onAnimationEnd
in interface ViewPropertyAnimatorListener
view
- The view associated with the ViewPropertyAnimatorpublic void onAnimationCancel(View view)
Notifies the cancellation of the animation. This callback is not invoked for animations with repeat count set to INFINITE.
onAnimationCancel
in interface ViewPropertyAnimatorListener
view
- The view associated with the ViewPropertyAnimator