HomeSort by relevance Sort by last modified time
    Searched refs:PropertyValuesHolder (Results 1 - 25 of 25) sorted by null

  /cts/tests/tests/animation/src/android/animation/cts/
PropertyValuesHolderTest.java 21 import android.animation.PropertyValuesHolder;
55 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(mProperty, values);
61 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat("", values);
68 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(mProperty, values);
69 PropertyValuesHolder cloneHolder = pVHolder.clone();
76 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(mProperty, dummyValues)
    [all...]
LayoutAnimationTest.java 28 import android.animation.PropertyValuesHolder;
114 PropertyValuesHolder pvhAlpha = PropertyValuesHolder.ofFloat("alpha", startAlpha,
132 PropertyValuesHolder pvhAlpha = PropertyValuesHolder.ofFloat("alpha", startAlpha,
ObjectAnimatorTest.java 21 import android.animation.PropertyValuesHolder;
135 PropertyValuesHolder propertyValuesHolder = PropertyValuesHolder.ofInt(propertyName, values);
137 propertyValuesHolder);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
LayoutAnimationsHideShow.java 29 import android.animation.PropertyValuesHolder;
114 PropertyValuesHolder pvhLeft =
115 PropertyValuesHolder.ofInt("left", 0, 1);
116 PropertyValuesHolder pvhTop =
117 PropertyValuesHolder.ofInt("top", 0, 1);
118 PropertyValuesHolder pvhRight =
119 PropertyValuesHolder.ofInt("right", 0, 1);
120 PropertyValuesHolder pvhBottom =
121 PropertyValuesHolder.ofInt("bottom", 0, 1);
122 PropertyValuesHolder pvhScaleX
    [all...]
MultiPropertyAnimation.java 95 PropertyValuesHolder pvhY = PropertyValuesHolder.ofFloat("y", ball.getY(),
97 PropertyValuesHolder pvhAlpha = PropertyValuesHolder.ofFloat("alpha", 1.0f, 0f);
106 PropertyValuesHolder pvhW = PropertyValuesHolder.ofFloat("width", ball.getWidth(),
108 PropertyValuesHolder pvhH = PropertyValuesHolder.ofFloat("height", ball.getHeight(),
110 PropertyValuesHolder pvTX = PropertyValuesHolder.ofFloat("x", ball.getX()
    [all...]
LayoutAnimations.java 28 import android.animation.PropertyValuesHolder;
150 PropertyValuesHolder pvhLeft =
151 PropertyValuesHolder.ofInt("left", 0, 1);
152 PropertyValuesHolder pvhTop =
153 PropertyValuesHolder.ofInt("top", 0, 1);
154 PropertyValuesHolder pvhRight =
155 PropertyValuesHolder.ofInt("right", 0, 1);
156 PropertyValuesHolder pvhBottom =
157 PropertyValuesHolder.ofInt("bottom", 0, 1);
158 PropertyValuesHolder pvhScaleX
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
SendUi.java 22 import android.animation.PropertyValuesHolder;
202 PropertyValuesHolder preX = PropertyValuesHolder.ofFloat("scaleX", PRE_SCREENSHOT_SCALE);
203 PropertyValuesHolder preY = PropertyValuesHolder.ofFloat("scaleY", PRE_SCREENSHOT_SCALE);
209 PropertyValuesHolder postX = PropertyValuesHolder.ofFloat("scaleX", SEND_SCREENSHOT_SCALE);
210 PropertyValuesHolder postY = PropertyValuesHolder.ofFloat("scaleY", SEND_SCREENSHOT_SCALE);
211 PropertyValuesHolder alphaDown = PropertyValuesHolder.ofFloat("alpha"
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
BannerController.java 21 import android.animation.PropertyValuesHolder;
98 final PropertyValuesHolder[] values = {
99 PropertyValuesHolder.ofInt(PROP_SET_BANNER_Y, getBannerY(), toY) };
ThreePaneLayout.java 21 import android.animation.PropertyValuesHolder;
397 PropertyValuesHolder.ofInt(PROP_MAILBOX_LIST_LEFT,
399 PropertyValuesHolder.ofInt(PROP_MESSAGE_LIST_WIDTH,
461 PropertyValuesHolder... values) {
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 73 * using more than one PropertyValuesHolder objects, then setting the propertyName simply
74 * sets the propertyName in the first of those PropertyValuesHolder objects.</p>
82 PropertyValuesHolder valuesHolder = mValues[0];
104 PropertyValuesHolder valuesHolder = mValues[0];
291 * several properties at once with the same ObjectAnimator, since PropertyValuesHolder allows
296 * android.util.Property} objects used to construct the PropertyValuesHolder objects or (if the
297 * PropertyValuesHOlder objects were created with property names) the target object should have
300 * PropertyValuesHolder objects.
301 * @param values A set of PropertyValuesHolder objects whose values will be animated between
306 PropertyValuesHolder... values)
    [all...]
PropertyValuesHolder.java 31 * should take on during an animation. PropertyValuesHolder objects can be used to create
35 public class PropertyValuesHolder implements Cloneable {
51 * PropertyValuesHolder, since it holds all of the per-property information. This
59 * PropertyValuesHolder, since it holds all of the per-property information. This
130 private PropertyValuesHolder(String propertyName) {
138 private PropertyValuesHolder(Property property) {
146 * Constructs and returns a PropertyValuesHolder with a given property name and
150 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
152 public static PropertyValuesHolder ofInt(String propertyName, int... values)
    [all...]
ValueAnimator.java 198 PropertyValuesHolder[] mValues;
201 * A hashmap of the PropertyValuesHolder objects. This map is used to lookup animated values
204 HashMap<String, PropertyValuesHolder> mValuesMap;
278 * specified in the PropertyValuesHolder objects.
280 * @param values A set of PropertyValuesHolder objects whose values will be animated
284 public static ValueAnimator ofPropertyValuesHolder(PropertyValuesHolder... values) {
323 * than one PropertyValuesHolder object, this method will set the values for the first
333 setValues(new PropertyValuesHolder[]{PropertyValuesHolder.ofInt("", values)});
335 PropertyValuesHolder valuesHolder = mValues[0]
    [all...]
LayoutTransition.java 268 PropertyValuesHolder pvhLeft = PropertyValuesHolder.ofInt("left", 0, 1);
269 PropertyValuesHolder pvhTop = PropertyValuesHolder.ofInt("top", 0, 1);
270 PropertyValuesHolder pvhRight = PropertyValuesHolder.ofInt("right", 0, 1);
271 PropertyValuesHolder pvhBottom = PropertyValuesHolder.ofInt("bottom", 0, 1);
272 PropertyValuesHolder pvhScrollX = PropertyValuesHolder.ofInt("scrollX", 0, 1)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
Tweener.java 28 import android.animation.PropertyValuesHolder;
64 ArrayList<PropertyValuesHolder> props = new ArrayList<PropertyValuesHolder>(vars.length/2);
84 props.add(PropertyValuesHolder.ofFloat(key,
87 props.add(PropertyValuesHolder.ofInt(key,
91 props.add(PropertyValuesHolder.ofFloat(key, floatValue));
103 props.toArray(new PropertyValuesHolder[props.size()]));
163 private static void replace(ArrayList<PropertyValuesHolder> props, Object... args) {
170 props.toArray(new PropertyValuesHolder[props.size()]));
  /packages/apps/Contacts/src/com/android/contacts/activities/
PhotoSelectionActivity.java 30 import android.animation.PropertyValuesHolder;
336 PropertyValuesHolder pvhLeft =
337 PropertyValuesHolder.ofInt("left", mOriginalPos.left, left);
338 PropertyValuesHolder pvhTop =
339 PropertyValuesHolder.ofInt("top", mOriginalPos.top, top);
340 PropertyValuesHolder pvhRight =
341 PropertyValuesHolder.ofInt("right", mOriginalPos.right, right);
342 PropertyValuesHolder pvhBottom =
343 PropertyValuesHolder.ofInt("bottom", mOriginalPos.bottom, bottom);
  /frameworks/base/core/java/android/widget/
StackView.java 21 import android.animation.PropertyValuesHolder;
249 PropertyValuesHolder slideInY = PropertyValuesHolder.ofFloat("YProgress", 0.0f);
250 PropertyValuesHolder slideInX = PropertyValuesHolder.ofFloat("XProgress", 0.0f);
269 PropertyValuesHolder slideOutY = PropertyValuesHolder.ofFloat("YProgress", 1.0f);
270 PropertyValuesHolder slideOutX = PropertyValuesHolder.ofFloat("XProgress", 0.0f);
346 PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", transX)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AppWidgetResizeFrame.java 5 import android.animation.PropertyValuesHolder;
401 PropertyValuesHolder width = PropertyValuesHolder.ofInt("width", lp.width, newWidth);
402 PropertyValuesHolder height = PropertyValuesHolder.ofInt("height", lp.height,
404 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", lp.x, newX);
405 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", lp.y, newY);
Folder.java 22 import android.animation.PropertyValuesHolder;
420 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1);
421 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
422 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f);
478 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0);
479 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 0.9f)
    [all...]
Launcher.java 26 import android.animation.PropertyValuesHolder;
    [all...]
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
MainActivity.java 22 import android.animation.PropertyValuesHolder;
175 PropertyValuesHolder.ofInt(
179 PropertyValuesHolder.ofFloat("alpha", shouldShow ? 1 : 0)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BeanBag.java 20 import android.animation.PropertyValuesHolder;
  /packages/experimental/DreamTheater/src/com/android/dreamtheater/
BouncyDroid.java 3 import android.animation.PropertyValuesHolder;
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 899 milliseconds