Most visited

Recently visited

ViewPropertyAnimatorListener

public interface ViewPropertyAnimatorListener

android.support.v4.view.ViewPropertyAnimatorListener
Known Indirect Subclasses


动画侦听器从动画接收通知。 通知表示动画相关的事件,例如动画的结束或开始。

Summary

Public methods

abstract void onAnimationCancel(View view)

通知取消动画。

abstract void onAnimationEnd(View view)

通知动画结束。

abstract void onAnimationStart(View view)

通知动画的开始。

Public methods

onAnimationCancel

void onAnimationCancel (View view)

通知取消动画。 对于重复次数设置为INFINITE的动画,不会调用此回调。

Parameters
view View: The view associated with the ViewPropertyAnimator

onAnimationEnd

void onAnimationEnd (View view)

通知动画结束。 对于重复次数设置为INFINITE的动画,不会调用此回调。

Parameters
view View: The view associated with the ViewPropertyAnimator

onAnimationStart

void onAnimationStart (View view)

通知动画的开始。

Parameters
view View: The view associated with the ViewPropertyAnimator

Hooray!