FileDocCategorySizeDatePackage
AnimatorListenerAdapter.javaAPI DocAndroid 5.1 API1765Thu Mar 12 22:22:08 GMT 2015android.animation

AnimatorListenerAdapter

public abstract class AnimatorListenerAdapter extends Object implements Animator.AnimatorPauseListener, Animator.AnimatorListener
This adapter class provides empty implementations of the methods from {@link android.animation.Animator.AnimatorListener}. 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.

Fields Summary
Constructors Summary
Methods Summary
public voidonAnimationCancel(Animator animation)
{@inheritDoc}

    
public voidonAnimationEnd(Animator animation)
{@inheritDoc}

    
public voidonAnimationPause(Animator animation)
{@inheritDoc}

    
public voidonAnimationRepeat(Animator animation)
{@inheritDoc}

    
public voidonAnimationResume(Animator animation)
{@inheritDoc}

    
public voidonAnimationStart(Animator animation)
{@inheritDoc}