public static class ViewUtils.DefaultAnimationListener
Implementation of Animator.AnimatorListener that does nothing. Used as base class for creating anonymous classes, which doesn't force you to override all the methods.
Also, ensures that DefaultAnimationListener.onAnimationFinished will be invoked not more than once
per animation (which, for instance, can be possible on HTC One X).
public DefaultAnimationListener()
Implementation of Animator.AnimatorListener that does nothing. Used as base class for creating anonymous classes, which doesn't force you to override all the methods.
Also, ensures that DefaultAnimationListener.onAnimationFinished will be invoked not more than once
per animation (which, for instance, can be possible on HTC One X).
public void onAnimationStart(@NotNull
android.animation.Animator animation)
public void onAnimationEnd(@NotNull
android.animation.Animator animation)
public void onAnimationFinished(@NotNull
android.animation.Animator animation)
Implement this method instead of .onAnimationEnd
public void onAnimationCancel(@NotNull
android.animation.Animator animation)
public void onAnimationRepeat(@NotNull
android.animation.Animator animation)