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

12

/frameworks/base/core/java/android/animation/
H A DObjectAnimator.java35 public final class ObjectAnimator extends ValueAnimator { class in inherits:ValueAnimator
65 * <p>If this ObjectAnimator has been set up to animate several properties together,
124 * Creates a new ObjectAnimator object. This default constructor is primarily for
128 public ObjectAnimator() { method in class:ObjectAnimator
140 private ObjectAnimator(Object target, String propertyName) { method in class:ObjectAnimator
151 private <T> ObjectAnimator(T target, Property<T, ?> property) { method in class:ObjectAnimator
157 * Constructs and returns an ObjectAnimator that animates between int values. A single
168 * @return An ObjectAnimator object that is set up to animate between the given values.
170 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) {
171 ObjectAnimator ani
[all...]
H A DLayoutTransition.java80 * the target and values being animated, assuming they use ObjectAnimator objects with
135 private static ObjectAnimator defaultChangeIn;
136 private static ObjectAnimator defaultChangeOut;
137 private static ObjectAnimator defaultFadeIn;
138 private static ObjectAnimator defaultFadeOut;
243 defaultChangeIn = ObjectAnimator.ofPropertyValuesHolder((Object)null,
252 defaultFadeIn = ObjectAnimator.ofFloat(null, "alpha", 0f, 1f);
256 defaultFadeOut = ObjectAnimator.ofFloat(null, "alpha", 1f, 0f);
486 * transitions, the animation should either be a ObjectAnimator or a AnimatorSet
487 * of animations including PropertyAnimators. Also, these ObjectAnimator object
[all...]
H A DAnimatorInflater.java156 private static ObjectAnimator loadObjectAnimator(Context context, AttributeSet attrs)
159 ObjectAnimator anim = new ObjectAnimator();
/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.java24 import android.animation.ObjectAnimator;
130 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 1);
135 ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 1);
145 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 0);
150 ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 0);
H A DActionBarContextView.java26 import android.animation.ObjectAnimator;
393 ObjectAnimator buttonAnimator = ObjectAnimator.ofFloat(mClose, "translationX", 0);
407 ObjectAnimator a = ObjectAnimator.ofFloat(child, "scaleY", 0, 1);
419 ObjectAnimator buttonAnimator = ObjectAnimator.ofFloat(mClose, "translationX",
434 ObjectAnimator a = ObjectAnimator.ofFloat(child, "scaleY", 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 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 DLinesActivity.java19 import android.animation.ObjectAnimator;
33 private ObjectAnimator mAnimator;
42 mAnimator = ObjectAnimator.ofFloat(view, "offset", 0.0f, 15.0f);
44 mAnimator.setRepeatCount(ObjectAnimator.INFINITE);
45 mAnimator.setRepeatMode(ObjectAnimator.REVERSE);
H A DColoredRectsActivity.java19 import android.animation.ObjectAnimator;
32 private ObjectAnimator mAnimator;
H A DGLTextureViewActivity.java19 import android.animation.ObjectAnimator;
98 ObjectAnimator animator = ObjectAnimator.ofFloat(mTextureView, "rotationY", 0.0f, 360.0f);
99 animator.setRepeatMode(ObjectAnimator.REVERSE);
100 animator.setRepeatCount(ObjectAnimator.INFINITE);
/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);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DChoreographer.java22 import android.animation.ObjectAnimator;
73 Animator posAnim = ObjectAnimator.ofFloat(mContentView, "translationY",
80 Animator glowAnim = ObjectAnimator.ofFloat(mContentView, "alpha",
90 noRecentAppsFadeAnim = ObjectAnimator.ofFloat(mNoRecentAppsView, "alpha",
107 Animator bgAnim = ObjectAnimator.ofInt(background,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DShirtPocket.java21 import android.animation.ObjectAnimator;
75 ObjectAnimator.ofFloat(this, "alpha", 0f, 1f).start();
90 Animator a = ObjectAnimator.ofFloat(this, "alpha", getAlpha(), 0f);
130 ObjectAnimator mAnimHide, mAnimShow;
H A DNotificationPanel.java22 import android.animation.ObjectAnimator;
239 set.play(ObjectAnimator.ofFloat(
243 .with(ObjectAnimator.ofFloat(
273 Animator a = ObjectAnimator.ofFloat(toHide, "alpha", 1f, 0f)
287 ObjectAnimator.ofFloat(toShow, "alpha", 0f, 1f)
388 Animator posAnim = ObjectAnimator.ofFloat(mContentParent, "translationY",
396 Animator fadeAnim = ObjectAnimator.ofFloat(mContentParent, "alpha",
H A DNotificationLinearLayout.java20 import android.animation.ObjectAnimator;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java20 import android.animation.ObjectAnimator;
185 ObjectAnimator.ofFloat(this, "glowAlpha", 1f),
186 ObjectAnimator.ofFloat(this, "glowScale", GLOW_MAX_SCALE_FACTOR)
191 ObjectAnimator.ofFloat(this, "glowAlpha", 0f),
192 ObjectAnimator.ofFloat(this, "glowScale", 1f),
193 ObjectAnimator.ofFloat(this, "drawingAlpha", BUTTON_QUIESCENT_ALPHA)
H A DNotificationRowLayout.java21 import android.animation.ObjectAnimator;
175 final ObjectAnimator alphaFade = ObjectAnimator.ofFloat(child, "alpha", 0f, 1f);
230 anim = ObjectAnimator.ofFloat(child, "alpha", currentAlpha, 0);
308 ObjectAnimator.ofInt(this, "forcedHeight", computedHeight)
/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java20 import android.animation.ObjectAnimator;
145 ObjectAnimator mInAnimation;
146 ObjectAnimator mOutAnimation;
271 ObjectAnimator getDefaultInAnimation() {
272 ObjectAnimator anim = ObjectAnimator.ofFloat(null, "alpha", 0.0f, 1.0f);
277 ObjectAnimator getDefaultOutAnimation() {
278 ObjectAnimator anim = ObjectAnimator.ofFloat(null, "alpha", 1.0f, 0.0f);
845 * @see #setInAnimation(android.animation.ObjectAnimator)
[all...]
H A DStackView.java20 import android.animation.ObjectAnimator;
248 ObjectAnimator slideIn = ObjectAnimator.ofPropertyValuesHolder(animationSlider,
268 ObjectAnimator slideOut = ObjectAnimator.ofPropertyValuesHolder(animationSlider,
348 ObjectAnimator oa = ObjectAnimator.ofPropertyValuesHolder(view, scalePropX, scalePropY,
471 WeakReference<ObjectAnimator> transformAnimator;
472 WeakReference<ObjectAnimator> sliderAnimator;
478 void setTransformAnimator(ObjectAnimator o
[all...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java27 import android.animation.ObjectAnimator;
37 ObjectAnimator animator;
40 public Tweener(ObjectAnimator anim) {
97 ObjectAnimator anim = null;
99 anim = ObjectAnimator.ofPropertyValuesHolder(object,
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java21 import android.animation.ObjectAnimator;
99 private ObjectAnimator createTranslationAnimation(View v, float newPos) {
100 ObjectAnimator anim = ObjectAnimator.ofFloat(v,
232 ObjectAnimator anim = createTranslationAnimation(animView, newPos);
255 ObjectAnimator anim = createTranslationAnimation(animView, 0);
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java31 import android.animation.ObjectAnimator;
549 AnimatorSet.Builder b = anim.play(ObjectAnimator.ofFloat(mContainerView, "alpha", 1));
551 b.with(ObjectAnimator.ofFloat(mContentView, "translationY",
554 b.with(ObjectAnimator.ofFloat(mContainerView, "translationY", 0));
559 b.with(ObjectAnimator.ofFloat(mSplitView, "alpha", 1));
584 AnimatorSet.Builder b = anim.play(ObjectAnimator.ofFloat(mContainerView, "alpha", 0));
586 b.with(ObjectAnimator.ofFloat(mContentView, "translationY",
588 b.with(ObjectAnimator.ofFloat(mContainerView, "translationY",
593 b.with(ObjectAnimator.ofFloat(mSplitView, "alpha", 0));

Completed in 407 milliseconds

12