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

  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 35 public final class ObjectAnimator extends 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() {
140 private ObjectAnimator(Object target, String propertyName) {
151 private <T> ObjectAnimator(T target, Property<T, ?> property) {
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 anim = new ObjectAnimator(target, propertyName)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonView.java 20 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)
  /packages/apps/Launcher2/src/com/android/launcher2/
SearchDropTargetBar.java 22 import android.animation.ObjectAnimator;
44 private ObjectAnimator mQSBSearchBarFadeInAnim;
45 private ObjectAnimator mQSBSearchBarFadeOutAnim;
94 ObjectAnimator fadeInAlphaAnim = ObjectAnimator.ofFloat(mDropTargetBar, "alpha", 1f);
100 fadeInAnimators.with(ObjectAnimator.ofFloat(mDropTargetBar, "translationY", 0f));
109 ObjectAnimator fadeOutAlphaAnim = ObjectAnimator.ofFloat(mDropTargetBar, "alpha", 0f);
114 fadeOutAnimators.with(ObjectAnimator.ofFloat(mDropTargetBar, "translationY",
125 mQSBSearchBarFadeInAnim = ObjectAnimator.ofFloat(mQSBSearchBar, "alpha", 1f)
    [all...]
RocketLauncher.java 25 import android.animation.ObjectAnimator;
164 ObjectAnimator.ofFloat(this, "scaleX", 15f),
165 ObjectAnimator.ofFloat(this, "scaleY", 15f),
166 ObjectAnimator.ofFloat(this, "alpha", 0f)
  /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));
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/14/
android.jar 

Completed in 210 milliseconds