Android APIs
public class

ViewPropertyAnimatorListenerAdapter

extends Object
implements ViewPropertyAnimatorListener
java.lang.Object
   ↳ android.support.v4.view.ViewPropertyAnimatorListenerAdapter

Class Overview

This adapter class provides empty implementations of the methods from 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.

Summary

Public Constructors
ViewPropertyAnimatorListenerAdapter()
Public Methods
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.

[Expand]
Inherited Methods
From class java.lang.Object
From interface android.support.v4.view.ViewPropertyAnimatorListener

Public Constructors

public ViewPropertyAnimatorListenerAdapter ()

Public Methods

public void onAnimationCancel (View view)

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

Parameters
view The view associated with the ViewPropertyAnimator

public void onAnimationEnd (View view)

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

Parameters
view The view associated with the ViewPropertyAnimator

public void onAnimationStart (View view)

Notifies the start of the animation.

Parameters
view The view associated with the ViewPropertyAnimator