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

  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 34 * <p>For more information about animating with {@code ObjectAnimator}, read the
42 public final class ObjectAnimator extends ValueAnimator {
72 * <p>If this ObjectAnimator has been set up to animate several properties together,
131 * Creates a new ObjectAnimator object. This default constructor is primarily for
135 public ObjectAnimator() {
147 private ObjectAnimator(Object target, String propertyName) {
158 private <T> ObjectAnimator(T target, Property<T, ?> property) {
164 * Constructs and returns an ObjectAnimator that animates between int values. A single
175 * @return An ObjectAnimator object that is set up to animate between the given values.
177 public static ObjectAnimator ofInt(Object target, String propertyName, int... values)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java 20 import android.animation.ObjectAnimator;
192 ObjectAnimator.ofFloat(this, "glowAlpha", 1f),
193 ObjectAnimator.ofFloat(this, "glowScale", GLOW_MAX_SCALE_FACTOR)
198 ObjectAnimator.ofFloat(this, "glowAlpha", 0f),
199 ObjectAnimator.ofFloat(this, "glowScale", 1f),
200 ObjectAnimator.ofFloat(this, "drawingAlpha", BUTTON_QUIESCENT_ALPHA)
  /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));
  /packages/apps/Launcher2/src/com/android/launcher2/
RocketLauncher.java 24 import android.animation.ObjectAnimator;
155 ObjectAnimator.ofFloat(this, "scaleX", 15f),
156 ObjectAnimator.ofFloat(this, "scaleY", 15f),
157 ObjectAnimator.ofFloat(this, "alpha", 0f)
CellLayout.java 21 import android.animation.ObjectAnimator;
    [all...]
Launcher.java 25 import android.animation.ObjectAnimator;
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ActionBarImpl.java 33 import android.animation.ObjectAnimator;
685 AnimatorSet.Builder b = anim.play(ObjectAnimator.ofFloat(mTopVisibilityView,
688 b.with(ObjectAnimator.ofFloat(mContentView, "translationY",
694 b.with(ObjectAnimator.ofFloat(mSplitView, "translationY", 0));
743 AnimatorSet.Builder b = anim.play(ObjectAnimator.ofFloat(mTopVisibilityView,
746 b.with(ObjectAnimator.ofFloat(mContentView, "translationY",
751 b.with(ObjectAnimator.ofFloat(mSplitView, "translationY",
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 149 milliseconds