Home | History | Annotate | Download | only in animation

Lines Matching defs:Animator

25 public abstract class Animator implements Cloneable {
37 * {@link AnimatorListener#onAnimationStart(Animator)} for any listeners of this animator.
52 * {@link android.animation.Animator.AnimatorListener#onAnimationCancel(Animator)} to
54 * {@link android.animation.Animator.AnimatorListener#onAnimationEnd(Animator)} message.
64 * {@link android.animation.Animator.AnimatorListener#onAnimationEnd(Animator)} method on
94 public abstract Animator setDuration(long duration);
114 * Returns whether this Animator is currently running (having been started and gone past any
117 * @return Whether the Animator is running.
122 * Returns whether this Animator has been started and not yet ended. This state is a superset
123 * of the state of {@link #isRunning()}, because an Animator with a nonzero
128 * @return Whether the Animator has been started and not yet ended.
166 * Gets the set of {@link android.animation.Animator.AnimatorListener} objects that are currently
167 * listening for events on this <code>Animator</code> object.
188 public Animator clone() {
190 final Animator anim = (Animator) super.clone();
251 void onAnimationStart(Animator animation);
259 void onAnimationEnd(Animator animation);
267 void onAnimationCancel(Animator animation);
274 void onAnimationRepeat(Animator animation);