Searched refs:ObjectAnimator (Results 1 - 25 of 89) sorted by relevance

1234

/frameworks/base/core/java/android/animation/
H A DObjectAnimator.java38 * <p>For more information about animating with {@code ObjectAnimator}, read the
46 public final class ObjectAnimator extends ValueAnimator { class in inherits:ValueAnimator
47 private static final String LOG_TAG = "ObjectAnimator";
83 * <p>If this ObjectAnimator has been set up to animate several properties together,
171 * Creates a new ObjectAnimator object. This default constructor is primarily for
175 public ObjectAnimator() { method in class:ObjectAnimator
187 private ObjectAnimator(Object target, String propertyName) { method in class:ObjectAnimator
198 private <T> ObjectAnimator(T target, Property<T, ?> property) { method in class:ObjectAnimator
204 * Constructs and returns an ObjectAnimator that animates between int values. A single
215 * @return An ObjectAnimator objec
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DDrawableHolder.java22 import android.animation.ObjectAnimator;
44 private ArrayList<ObjectAnimator> mAnimators = new ArrayList<ObjectAnimator>();
45 private ArrayList<ObjectAnimator> mNeedToStart = new ArrayList<ObjectAnimator>();
70 public ObjectAnimator addAnimTo(long duration, long delay,
75 ObjectAnimator anim = ObjectAnimator.ofFloat(this, property, toValue);
90 ArrayList<ObjectAnimator> removalList = (ArrayList<ObjectAnimator>)mAnimator
[all...]
H A DAbsActionBarView.java27 import android.animation.ObjectAnimator;
150 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 1);
155 ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 1);
165 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 0);
170 ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 0);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewLayersActivity.java19 import android.animation.ObjectAnimator;
53 final ObjectAnimator moveRight = ObjectAnimator.ofFloat(leftList,
56 moveRight.setRepeatCount(ObjectAnimator.INFINITE);
57 moveRight.setRepeatMode(ObjectAnimator.REVERSE);
59 final ObjectAnimator moveLeft = ObjectAnimator.ofFloat(rightList,
62 moveLeft.setRepeatCount(ObjectAnimator.INFINITE);
63 moveLeft.setRepeatMode(ObjectAnimator.REVERSE);
65 final ObjectAnimator rotat
[all...]
H A DAnimated3dActivity.java19 import android.animation.ObjectAnimator;
45 ObjectAnimator animator = ObjectAnimator.ofFloat(view, "rotationY", 0.0f, 360.0f);
47 animator.setRepeatCount(ObjectAnimator.INFINITE);
48 animator.setRepeatMode(ObjectAnimator.REVERSE);
H A DColorFiltersMutateActivity.java20 import android.animation.ObjectAnimator;
73 ObjectAnimator sat = ObjectAnimator.ofFloat(this, "saturation", 1.0f);
75 sat.setRepeatCount(ObjectAnimator.INFINITE);
76 sat.setRepeatMode(ObjectAnimator.REVERSE);
79 ObjectAnimator light = ObjectAnimator.ofInt(this, "lightAdd", 0x00101030);
82 light.setRepeatCount(ObjectAnimator.INFINITE);
83 light.setRepeatMode(ObjectAnimator.REVERSE);
86 ObjectAnimator mul
[all...]
H A DBitmapMutateActivity.java19 import android.animation.ObjectAnimator;
34 private ObjectAnimator mAnimator;
46 mAnimator = ObjectAnimator.ofInt(view, "offset", 0, PATTERN_SIZE - 1);
48 mAnimator.setRepeatCount(ObjectAnimator.INFINITE);
49 mAnimator.setRepeatMode(ObjectAnimator.REVERSE);
H A DClipOutlineActivity.java19 import android.animation.ObjectAnimator;
46 ObjectAnimator animator = ObjectAnimator.ofFloat(group, "clipPosition", 0.0f, 1.0f);
H A DClipRegionActivity.java19 import android.animation.ObjectAnimator;
43 ObjectAnimator animator = ObjectAnimator.ofFloat(group, "clipPosition", 0.0f, 1.0f);
H A DScaledTextActivity.java19 import android.animation.ObjectAnimator;
38 ObjectAnimator animation = ObjectAnimator.ofFloat(view, "textScale", 1.0f, 10.0f);
40 animation.setRepeatCount(ObjectAnimator.INFINITE);
41 animation.setRepeatMode(ObjectAnimator.REVERSE);
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAnimatorSetEventsTest.java32 ObjectAnimator xAnim = ObjectAnimator.ofFloat(this, "translationX", 0, 100);
33 ObjectAnimator yAnim = ObjectAnimator.ofFloat(this, "translationY", 0, 100);
H A DObjectAnimatorEventsTest.java22 * Listener tests for ObjectAnimator.
31 mAnimator = ObjectAnimator.ofFloat(button, "translationX", 0, 100);
H A DAutoCancelTest.java42 ObjectAnimator setupAnimator(long startDelay, String... properties) {
43 ObjectAnimator returnVal;
45 returnVal = ObjectAnimator.ofFloat(this, properties[0], 0, 1);
51 returnVal = ObjectAnimator.ofPropertyValuesHolder(this, pvhArray);
62 final ObjectAnimator animX1 = setupAnimator(startDelay, "x");
63 final ObjectAnimator animY1 = setupAnimator(startDelay, "y");
64 final ObjectAnimator animXY1 = setupAnimator(startDelay, "x", "y");
65 final ObjectAnimator animXZ1 = setupAnimator(startDelay, "x", "z");
72 final ObjectAnimator animX2 = setupAnimator(0, "x");
87 final ObjectAnimator animXY
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSecurityViewHelper.java21 import android.animation.ObjectAnimator;
37 Animator anim = ObjectAnimator.ofFloat(ecaView, "alpha", 0f);
60 Animator anim = ObjectAnimator.ofInt(bouncerFrame, "alpha", 0, 255);
77 Animator anim = ObjectAnimator.ofFloat(ecaView, "alpha", 1f);
86 Animator anim = ObjectAnimator.ofInt(bouncerFrame, "alpha", 255, 0);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
H A DUtils.java20 import android.animation.ObjectAnimator;
125 public static ObjectAnimator getPulseAnimator(View labelToAnimate, float decreaseRatio,
134 ObjectAnimator pulseAnimator =
135 ObjectAnimator.ofPropertyValuesHolder(labelToAnimate, scaleX, scaleY);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRipple.java21 import android.animation.ObjectAnimator;
75 private ObjectAnimator mAnimRadius;
76 private ObjectAnimator mAnimOpacity;
77 private ObjectAnimator mAnimX;
78 private ObjectAnimator mAnimY;
292 final ObjectAnimator radius = ObjectAnimator.ofFloat(this, "radiusGravity", 1);
298 final ObjectAnimator cX = ObjectAnimator.ofFloat(this, "xGravity", 1);
304 final ObjectAnimator c
[all...]
H A DRippleBackground.java21 import android.animation.ObjectAnimator;
76 private ObjectAnimator mAnimOuterOpacity;
212 final ObjectAnimator opacity = ObjectAnimator.ofFloat(this, "outerOpacity", 0, 1);
349 final ObjectAnimator outerOpacityAnim;
352 outerOpacityAnim = ObjectAnimator.ofFloat(this,
364 final ObjectAnimator outerFadeOutAnim = ObjectAnimator.ofFloat(
385 outerOpacityAnim = ObjectAnimator.ofFloat(this, "outerOpacity", 0);
/frameworks/base/core/java/android/transition/
H A DChangeScroll.java20 import android.animation.ObjectAnimator;
75 scrollXAnimator = ObjectAnimator.ofInt(view, "scrollX", startX, endX);
79 scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY);
H A DCrossfade.java22 import android.animation.ObjectAnimator;
197 ObjectAnimator anim;
200 anim = ObjectAnimator.ofInt(startDrawable, "alpha", 255, 0, 0);
202 anim = ObjectAnimator.ofInt(startDrawable, "alpha", 0);
211 ObjectAnimator anim1 = null;
214 anim1 = ObjectAnimator.ofFloat(view, View.ALPHA, 0, 0, 1);
216 anim1 = ObjectAnimator.ofFloat(view, View.ALPHA, 0, 1);
243 Animator anim2 = ObjectAnimator.ofObject(startDrawable, "bounds",
249 Animator anim3 = ObjectAnimator.ofObject(endDrawable, "bounds",
H A DRotate.java20 import android.animation.ObjectAnimator;
55 return ObjectAnimator.ofFloat(view, View.ROTATION,
H A DFade.java23 import android.animation.ObjectAnimator;
116 final ObjectAnimator anim = ObjectAnimator.ofFloat(view, "transitionAlpha", endAlpha);
H A DRecolor.java20 import android.animation.ObjectAnimator;
85 return ObjectAnimator.ofArgb(endBackground, "color", startColor.getColor(),
96 return ObjectAnimator.ofArgb(textView, "textColor", start, end);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DHitRectBug.java18 import android.animation.ObjectAnimator;
63 ObjectAnimator anim = ObjectAnimator.ofFloat(mImageView, View.ROTATION, 0, 360);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarTransitions.java21 import android.animation.ObjectAnimator;
55 public ObjectAnimator animateTransitionTo(View v, float toAlpha) {
56 return ObjectAnimator.ofFloat(v, "alpha", v.getAlpha(), toAlpha);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewScroller.java21 import android.animation.ObjectAnimator;
41 ObjectAnimator mScrollAnimator;
131 ObjectAnimator animateBoundScroll() {
152 mScrollAnimator = ObjectAnimator.ofFloat(this, "stackScroll", curScroll, newScroll);

Completed in 415 milliseconds

1234