FileDocCategorySizeDatePackage
ViewPropertyAnimatorListener.javaAPI DocAndroid 5.1 API1635Thu Mar 12 22:22:56 GMT 2015android.support.v4.view

ViewPropertyAnimatorListener

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.

Fields Summary
Constructors Summary
Methods Summary
public voidonAnimationCancel(android.view.View view)

Notifies the cancellation of the animation. This callback is not invoked for animations with repeat count set to INFINITE.

param
view The view associated with the ViewPropertyAnimator

public voidonAnimationEnd(android.view.View view)

Notifies the end of the animation. This callback is not invoked for animations with repeat count set to INFINITE.

param
view The view associated with the ViewPropertyAnimator

public voidonAnimationStart(android.view.View view)

Notifies the start of the animation.

param
view The view associated with the ViewPropertyAnimator