HomeSort by relevance Sort by last modified time
    Searched refs:animatorSet (Results 1 - 5 of 5) sorted by null

  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorSetTest.java 21 import android.animation.AnimatorSet;
32 private AnimatorSet mAnimatorSet;
55 mAnimatorSet = new AnimatorSet();
68 mAnimatorSet = new AnimatorSet();
81 mAnimatorSet = new AnimatorSet();
94 mAnimatorSet = new AnimatorSet();
106 mAnimatorSet = new AnimatorSet();
117 mAnimatorSet = new AnimatorSet();
154 private void startAnimation(final AnimatorSet animatorSet) throws Throwable
    [all...]
AnimationActivity.java 21 import android.animation.AnimatorSet;
172 public void startAnimatorSet(AnimatorSet set){
186 AnimatorSet animation = null;
216 AnimatorSet bouncer = new AnimatorSet();
229 AnimatorSet animatorSet = new AnimatorSet();
230 animatorSet.play(bouncer).before(fadeAnim);
231 animatorSet.start()
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java 61 AnimatorSet animation = null;
124 AnimatorSet bouncer = new AnimatorSet();
143 AnimatorSet animatorSet = new AnimatorSet();
144 animatorSet.play(bouncer).before(fadeAnim);
147 animatorSet.start();
  /frameworks/base/core/java/android/animation/
AnimatorSet.java 28 * <p>There are two different approaches to adding animations to a <code>AnimatorSet</code>:
29 * either the {@link AnimatorSet#playTogether(Animator[]) playTogether()} or
30 * {@link AnimatorSet#playSequentially(Animator[]) playSequentially()} methods can be called to add
31 * a set of animations all at once, or the {@link AnimatorSet#play(Animator)} can be
32 * used in conjunction with methods in the {@link AnimatorSet.Builder Builder}
36 * <p>It is possible to set up a <code>AnimatorSet</code> with circular dependencies between
45 * <p>For more information about animating with {@code AnimatorSet}, read the
50 public final class AnimatorSet extends Animator {
61 * cancel or end when cancel() or end() is called on this AnimatorSet
74 * Set of all nodes created for this AnimatorSet. This list is used upo
    [all...]
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 365 Set<Animator> animatorSet = mAnimatorMapCopy.keySet();
366 for (Animator runningAnim : animatorSet) {
    [all...]

Completed in 966 milliseconds