Example usage for Java android.animation AnimatorSet fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addListener(AnimatorListener listener) Adds a listener to the set of listeners that are sent events through the life of an animation, such as start, repeat, and end. |
void | cancel() Note that canceling a |
void | end() Note that ending a |
boolean | equals(Object obj) Indicates whether some other object is "equal to" this one. |
ArrayList | getChildAnimations() Returns the current list of child Animator objects controlled by this AnimatorSet. |
boolean | isStarted() |
Builder | play(Animator anim) This method creates a Builder object, which is used to set up playing constraints. |
void | playSequentially(Animator... items) Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends. |
void | playSequentially(List Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends. |
void | playTogether(Animator... items) Sets up this AnimatorSet to play all of the supplied animations at the same time. |
void | playTogether(Collection Sets up this AnimatorSet to play all of the supplied animations at the same time. |
void | removeAllListeners() Removes all #addListener(android.animation.Animator.AnimatorListener) listeners and #addPauseListener(android.animation.Animator.AnimatorPauseListener) pauseListeners from this object. |
AnimatorSet | setDuration(long duration) Sets the length of each of the current child animations of this AnimatorSet. |
void | setInterpolator(TimeInterpolator interpolator) Sets the TimeInterpolator for all current #getChildAnimations() child animations of this AnimatorSet. |
void | setStartDelay(long startDelay) The amount of time, in milliseconds, to delay starting the animation after #start() is called. |
void | setTarget(Object target) Sets the target object for all current #getChildAnimations() child animations of this AnimatorSet that take targets ( ObjectAnimator and AnimatorSet). |
void | start() Starting this |