Uses of Class
com.nineoldandroids.animation.AnimatorSet.Builder

Packages that use AnimatorSet.Builder
com.nineoldandroids.animation   
 

Uses of AnimatorSet.Builder in com.nineoldandroids.animation
 

Methods in com.nineoldandroids.animation that return AnimatorSet.Builder
 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.after(long delay)
          Sets up the animation supplied in the AnimatorSet.play(Animator) call that created this Builder object to play when the given amount of time elapses.
 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.
 AnimatorSet.Builder AnimatorSet.play(Animator anim)
          This method creates a Builder object, which is used to set up playing constraints.
 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.