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

  /development/samples/ApiDemos/src/com/example/android/apis/view/
LayoutAnimation2.java 23 import android.view.animation.AnimationSet;
37 AnimationSet set = new AnimationSet(true);
  /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...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListWithDisappearingItemBug.java 27 import android.view.animation.AnimationSet;
61 AnimationSet set = new AnimationSet(true);
  /frameworks/base/core/java/android/view/animation/
AnimationSet.java 31 * If AnimationSet sets any properties that its children also set
32 * (for example, duration or fillBefore), the values of AnimationSet
35 public class AnimationSet extends Animation {
56 * Constructor used when an AnimationSet is loaded from a resource.
61 public AnimationSet(Context context, AttributeSet attrs) {
65 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.AnimationSet);
76 * Constructor to use when building an AnimationSet from code
79 * should use the interpolator assocciated with this AnimationSet.
82 public AnimationSet(boolean shareInterpolator) {
88 protected AnimationSet clone() throws CloneNotSupportedException
    [all...]
AnimationUtils.java 87 AnimationSet parent, AttributeSet attrs) throws XmlPullParserException, IOException {
105 anim = new AnimationSet(c, attrs);
106 createAnimationFromXml(c, parser, (AnimationSet)anim, attrs);
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteZone.java 30 import android.view.animation.AnimationSet;
48 private AnimationSet mInAnimation;
49 private AnimationSet mOutAnimation;
178 final AnimationSet animationSet = mInAnimation;
179 animationSet.setInterpolator(new AccelerateInterpolator());
180 animationSet.addAnimation(new AlphaAnimation(0.0f, 1.0f));
182 animationSet.addAnimation(new TranslateAnimation(Animation.ABSOLUTE, 0.0f,
186 animationSet.addAnimation(new TranslateAnimation(Animation.RELATIVE_TO_SELF,
190 animationSet.setDuration(ANIMATION_DURATION)
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
PopupWindow.java 23 import android.view.animation.AnimationSet;
197 AnimationSet set = new AnimationSet(false);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidatesContainer.java 29 import android.view.animation.AnimationSet;
442 AnimationSet animSet = new AnimationSet(getContext(), null);
  /cts/tests/tests/widget/src/android/widget/cts/
ViewAnimatorTest.java 38 import android.view.animation.AnimationSet;
105 AnimationSet expected = new AnimationSet(mActivity, mAttributeSet);
415 AnimationSet expected = new AnimationSet(mActivity, mAttributeSet);
AdapterViewTest.java 30 import android.view.animation.AnimationSet;
629 LayoutAnimationController lAC = new LayoutAnimationController(new AnimationSet(true));
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 566 milliseconds