Uses of Class
com.nineoldandroids.animation.Animator

Packages that use Animator
com.nineoldandroids.animation   
 

Uses of Animator in com.nineoldandroids.animation
 

Subclasses of Animator in com.nineoldandroids.animation
 class AnimatorSet
          This class plays a set of Animator objects in the specified order.
 class ObjectAnimator
          This subclass of ValueAnimator provides support for animating properties on target objects.
 class TimeAnimator
          This class provides a simple callback mechanism to listeners that is synchronized with other animators in the system.
 class ValueAnimator
          This class provides a simple timing engine for running animations which calculate animated values and set them on target objects.
 

Methods in com.nineoldandroids.animation that return Animator
 Animator Animator.clone()
           
static Animator AnimatorInflater.loadAnimator(Context context, int id)
          Loads an Animator object from a resource
abstract  Animator Animator.setDuration(long duration)
          Sets the length of the animation.
 

Methods in com.nineoldandroids.animation that return types with arguments of type Animator
 ArrayList<Animator> AnimatorSet.getChildAnimations()
          Returns the current list of child Animator objects controlled by this AnimatorSet.
 

Methods in com.nineoldandroids.animation with parameters of type Animator
 AnimatorSet.Builder AnimatorSet.Builder.after(Animator anim)
          Sets up the given animation to play when the animation supplied in the AnimatorSet.play(Animator) call that created this Builder object to start when the animation supplied in this method call ends.
 AnimatorSet.Builder AnimatorSet.Builder.before(Animator anim)
          Sets up the given animation to play when the animation supplied in the AnimatorSet.play(Animator) call that created this Builder object ends.
 void AnimatorListenerAdapter.onAnimationCancel(Animator animation)
          Notifies the cancellation of the animation.
 void Animator.AnimatorListener.onAnimationCancel(Animator animation)
          Notifies the cancellation of the animation.
 void AnimatorListenerAdapter.onAnimationEnd(Animator animation)
          Notifies the end of the animation.
 void Animator.AnimatorListener.onAnimationEnd(Animator animation)
          Notifies the end of the animation.
 void AnimatorListenerAdapter.onAnimationRepeat(Animator animation)
          Notifies the repetition of the animation.
 void Animator.AnimatorListener.onAnimationRepeat(Animator animation)
          Notifies the repetition of the animation.
 void AnimatorListenerAdapter.onAnimationStart(Animator animation)
          Notifies the start of the animation.
 void Animator.AnimatorListener.onAnimationStart(Animator animation)
          Notifies the start of the animation.
 AnimatorSet.Builder AnimatorSet.play(Animator anim)
          This method creates a Builder object, which is used to set up playing constraints.
 void AnimatorSet.playSequentially(Animator... items)
          Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends.
 void AnimatorSet.playTogether(Animator... items)
          Sets up this AnimatorSet to play all of the supplied animations at the same time.
 AnimatorSet.Builder AnimatorSet.Builder.with(Animator anim)
          Sets up the given animation to play at the same time as the animation supplied in the AnimatorSet.play(Animator) call that created this Builder object.
 

Method parameters in com.nineoldandroids.animation with type arguments of type Animator
 void AnimatorSet.playSequentially(List<Animator> items)
          Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends.
 void AnimatorSet.playTogether(Collection<Animator> items)
          Sets up this AnimatorSet to play all of the supplied animations at the same time.