public interface ViewPropertyAnimatorListener
android.support.v4.view.ViewPropertyAnimatorListener |
Known Indirect Subclasses |
动画侦听器从动画接收通知。 通知表示动画相关的事件,例如动画的结束或开始。
Public methods |
|
---|---|
abstract void |
onAnimationCancel(View view) 通知取消动画。 |
abstract void |
onAnimationEnd(View view) 通知动画结束。 |
abstract void |
onAnimationStart(View view) 通知动画的开始。 |
void onAnimationCancel (View view)
通知取消动画。 对于重复次数设置为INFINITE的动画,不会调用此回调。
Parameters | |
---|---|
view |
View : The view associated with the ViewPropertyAnimator |
void onAnimationEnd (View view)
通知动画结束。 对于重复次数设置为INFINITE的动画,不会调用此回调。
Parameters | |
---|---|
view |
View : The view associated with the ViewPropertyAnimator |
void onAnimationStart (View view)
通知动画的开始。
Parameters | |
---|---|
view |
View : The view associated with the ViewPropertyAnimator |