HomeSort by relevance Sort by last modified time
    Searched defs:ObjectAnimator (Results 1 - 16 of 16) sorted by null

  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 33 * <p>For more information about animating with {@code ObjectAnimator}, read the
41 public final class ObjectAnimator extends ValueAnimator {
73 * <p>If this ObjectAnimator has been set up to animate several properties together,
160 * Creates a new ObjectAnimator object. This default constructor is primarily for
164 public ObjectAnimator() {
176 private ObjectAnimator(Object target, String propertyName) {
187 private <T> ObjectAnimator(T target, Property<T, ?> property) {
193 * Constructs and returns an ObjectAnimator that animates between int values. A single
204 * @return An ObjectAnimator object that is set up to animate between the given values.
206 public static ObjectAnimator ofInt(Object target, String propertyName, int... values)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java 21 import android.animation.ObjectAnimator;
61 Animator mAnimateToQuiescent = new ObjectAnimator();
142 private ObjectAnimator animateToQuiescent() {
143 return ObjectAnimator.ofFloat(this, "drawingAlpha", mQuiescentAlpha);
214 ObjectAnimator.ofFloat(this, "glowAlpha", 1f),
215 ObjectAnimator.ofFloat(this, "glowScale", GLOW_MAX_SCALE_FACTOR)
222 ObjectAnimator.ofFloat(this, "glowAlpha", 0f),
223 ObjectAnimator.ofFloat(this, "glowScale", 1f),
  /packages/apps/Browser/src/com/android/browser/
BrowserSnapshotPage.java 21 import android.animation.ObjectAnimator;
220 ObjectAnimator.ofFloat(null, View.SCALE_X, 0f, 1f),
221 ObjectAnimator.ofFloat(null, View.SCALE_Y, 0f, 1f));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseView.java 21 import android.animation.ObjectAnimator;
402 ObjectAnimator.ofFloat(v, View.SCALE_X, (float) scale),
403 ObjectAnimator.ofFloat(v, View.SCALE_Y, (float) scale)
411 ObjectAnimator.ofFloat(v, View.ROTATION, rot),
412 ObjectAnimator.ofFloat(v, View.X, i* mCellSize + (scale-1) * mCellSize /2),
413 ObjectAnimator.ofFloat(v, View.Y, j* mCellSize + (scale-1) * mCellSize /2)
  /packages/apps/Dialer/src/com/android/dialer/list/
PhoneFavoriteFragment.java 21 import android.animation.ObjectAnimator;
491 animators.add(ObjectAnimator.ofFloat(
505 animators.add(ObjectAnimator.ofFloat(
510 animators.add(ObjectAnimator.ofFloat(
557 animators.add(ObjectAnimator.ofFloat(
584 animators.add(ObjectAnimator.ofFloat(
594 animators.add(ObjectAnimator.ofFloat(
  /frameworks/base/core/java/com/android/internal/app/
ActionBarImpl.java 35 import android.animation.ObjectAnimator;
696 ObjectAnimator a = ObjectAnimator.ofFloat(mContainerView, View.TRANSLATION_Y, 0);
700 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y,
706 b.with(ObjectAnimator.ofFloat(mSplitView, View.TRANSLATION_Y, 0));
755 ObjectAnimator a = ObjectAnimator.ofFloat(mContainerView, View.TRANSLATION_Y, endingY);
759 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y,
764 b.with(ObjectAnimator.ofFloat(mSplitView, View.TRANSLATION_Y,
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java 22 import android.animation.ObjectAnimator;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 22 import android.animation.ObjectAnimator;
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 450 milliseconds