Class AnimationUtils.AnimationListenerAdapter

  • All Implemented Interfaces:
    android.view.animation.Animation.AnimationListener
    Enclosing class:
    AnimationUtils

    public abstract static class AnimationUtils.AnimationListenerAdapter
    extends java.lang.Object
    implements android.view.animation.Animation.AnimationListener
    This adapter class provides empty implementations of the methods from Animation.AnimationListener. 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.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void onAnimationEnd​(android.view.animation.Animation animation)  
      void onAnimationRepeat​(android.view.animation.Animation animation)  
      void onAnimationStart​(android.view.animation.Animation animation)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AnimationListenerAdapter

        public AnimationListenerAdapter()
    • Method Detail

      • onAnimationStart

        public void onAnimationStart​(android.view.animation.Animation animation)
        Specified by:
        onAnimationStart in interface android.view.animation.Animation.AnimationListener
      • onAnimationEnd

        public void onAnimationEnd​(android.view.animation.Animation animation)
        Specified by:
        onAnimationEnd in interface android.view.animation.Animation.AnimationListener
      • onAnimationRepeat

        public void onAnimationRepeat​(android.view.animation.Animation animation)
        Specified by:
        onAnimationRepeat in interface android.view.animation.Animation.AnimationListener