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

  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationSetTest.java 31 import android.view.animation.AnimationSet;
44 @TestTargetClass(AnimationSet.class)
72 method = "AnimationSet",
77 method = "AnimationSet",
82 new AnimationSet(true);
89 new AnimationSet(mActivity, attr);
100 final AnimationSet animationSet = createAnimationSet();
101 animationSet.setDuration(ANIMATIONSET_DURATION);
103 List<Animation> children = animationSet.getAnimations()
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteZone.java 30 import android.view.animation.AnimationSet;
48 private AnimationSet mInAnimation;
49 private AnimationSet mOutAnimation;
171 final AnimationSet animationSet = mInAnimation;
172 animationSet.setInterpolator(new AccelerateInterpolator());
173 animationSet.addAnimation(new AlphaAnimation(0.0f, 1.0f));
175 animationSet.addAnimation(new TranslateAnimation(Animation.ABSOLUTE, 0.0f,
179 animationSet.addAnimation(new TranslateAnimation(Animation.RELATIVE_TO_SELF,
183 animationSet.setDuration(ANIMATION_DURATION)
    [all...]

Completed in 453 milliseconds