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

1 2

  /frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
ReflectionInflaterTest.java 28 import android.view.animation.AnimationSet;
48 assertTrue(result instanceof AnimationSet);
49 final AnimationSet set = (AnimationSet) result;
63 assertTrue(result instanceof AnimationSet);
64 final AnimationSet set = (AnimationSet) result;
78 final AnimationSet group = (AnimationSet) parent;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAnimationSet.java 7 import android.view.animation.AnimationSet;
13 @Implements(AnimationSet.class)
18 private AnimationSet realAnimationSet;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
LayoutAnimation2.java 23 import android.view.animation.AnimationSet;
37 AnimationSet set = new AnimationSet(true);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAnimationSetTest.java 7 import android.view.animation.AnimationSet;
23 final AnimationSet set = new AnimationSet(true);
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationSetTest.java 38 import android.view.animation.AnimationSet;
79 new AnimationSet(true);
86 new AnimationSet(mActivity, attr);
91 final AnimationSet animationSet = createAnimationSet();
92 animationSet.setDuration(ANIMATIONSET_DURATION);
94 List<Animation> children = animationSet.getAnimations();
99 // After initialize, AnimationSet override the child values.
100 assertFalse(animationSet.isInitialized());
101 animationSet.initialize(INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE, INITIAL_SIZE)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListWithDisappearingItemBug.java 27 import android.view.animation.AnimationSet;
61 AnimationSet set = new AnimationSet(true);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AnimationSetTest.java 19 private AnimationSet set;
24 set = new AnimationSet(true);
  /development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/
ViewAnimations.java 24 import android.view.animation.AnimationSet;
77 final AnimationSet setAnimation = new AnimationSet(true);
  /frameworks/base/services/core/java/com/android/server/wm/
WindowAnimationSpec.java 32 import android.view.animation.AnimationSet;
165 } else if (animation instanceof AnimationSet) {
166 AnimationSet set = (AnimationSet) animation;
AppTransition.java 113 import android.view.animation.AnimationSet;
682 AnimationSet set = new AnimationSet(false);
    [all...]
  /frameworks/base/core/java/android/view/animation/
AnimationSet.java 32 * If AnimationSet sets any properties that its children also set
33 * (for example, duration or fillBefore), the values of AnimationSet
36 * <p>The way that AnimationSet inherits behavior from Animation is important to
37 * understand. Some of the Animation attributes applied to AnimationSet affect the
38 * AnimationSet itself, some are pushed down to the children, and some are ignored,
42 * on an AnimationSet object, will be pushed down to all child animations.</li>
43 * <li>repeatCount, fillEnabled: These properties are ignored for AnimationSet.</li>
44 * <li>startOffset, shareInterpolator: These properties apply to the AnimationSet itself.</li>
48 * release, the values set in XML were ignored for AnimationSet). That is, calling
49 * <code>setDuration(500)</code> on an AnimationSet has the same effect as declarin
    [all...]
AnimationUtils.java 161 AnimationSet parent, AttributeSet attrs) throws XmlPullParserException, IOException {
179 anim = new AnimationSet(c, attrs);
180 createAnimationFromXml(c, parser, (AnimationSet)anim, attrs);
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java 35 import android.view.animation.AnimationSet;
211 AnimationSet set = new AnimationSet(true);
249 AnimationSet set = new AnimationSet(true);
  /frameworks/base/services/core/java/com/android/server/policy/
StatusBarController.java 28 import android.view.animation.AnimationSet;
  /cts/tests/tests/widget/src/android/widget/cts/
ViewAnimatorTest.java 35 import android.view.animation.AnimationSet;
73 AnimationSet expected = new AnimationSet(mActivity, mAttributeSet);
314 AnimationSet expected = new AnimationSet(mActivity, mAttributeSet);
AdapterViewTest.java 48 import android.view.animation.AnimationSet;
449 LayoutAnimationController lAC = new LayoutAnimationController(new AnimationSet(true));
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/
CameraComposerFragment.java 36 import android.view.animation.AnimationSet;
273 AnimationSet animation = new AnimationSet(false /* shareInterpolator */);
  /packages/apps/Messaging/src/com/android/messaging/ui/
MultiAttachmentLayout.java 24 import android.view.animation.AnimationSet;
385 final AnimationSet animationSet = new AnimationSet(
387 animationSet.addAnimation(new TranslateAnimation(xOffset, 0, yOffset, 0));
388 animationSet.addAnimation(new ScaleAnimation(scaleX, 1, scaleY, 1));
389 animationSet.setDuration(
391 animationSet.setInterpolator(UiUtils.DEFAULT_INTERPOLATOR);
392 view.startAnimation(animationSet);
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
CameraMediaChooser.java 32 import android.view.animation.AnimationSet;
381 final AnimationSet animation = new AnimationSet(false /* shareInterpolator */);
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/app/
MediaRouteControllerDialog.java 60 import android.view.animation.AnimationSet;
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
FloatingToolbar.java 52 import android.view.animation.AnimationSet;
393 private final AnimationSet mOpenOverflowAnimation;
394 private final AnimationSet mCloseOverflowAnimation;
506 mOpenOverflowAnimation = new AnimationSet(true);
508 mCloseOverflowAnimation = new AnimationSet(true);
    [all...]
  /frameworks/support/mediarouter/src/main/java/androidx/mediarouter/app/
MediaRouteControllerDialog.java 54 import android.view.animation.AnimationSet;
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewController.java 35 import android.view.animation.AnimationSet;
    [all...]
  /frameworks/support/fragment/src/main/java/androidx/fragment/app/
FragmentManager.java 49 import android.view.animation.AnimationSet;
740 } else if (anim.animation instanceof AnimationSet) {
741 List<Animation> anims = ((AnimationSet) anim.animation).getAnimations();
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
Robolectric.java 444 public static ShadowAnimationSet shadowOf(AnimationSet instance) {
    [all...]

Completed in 468 milliseconds

1 2