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

1 2 3

  /cts/tests/tests/animation/src/android/animation/cts/
KeyframeTest.java 26 Keyframe keyFrame = Keyframe.ofInt(0.0f);
32 Keyframe keyFrame = Keyframe.ofInt(0.0f);
45 Keyframe keyFrame = Keyframe.ofInt(0.0f,10);
AnimationActivity.java 116 ObjectAnimator objAnimator = ObjectAnimator.ofInt(object, propertyName, start,end);
126 ObjectAnimator objAnimator = ObjectAnimator.ofInt(view.newBall, "y", (int)mStartY,
197 colorAnimator = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE);
ObjectAnimatorTest.java 91 ObjectAnimator colorAnimator = ObjectAnimator.ofInt(object, property,
134 PropertyValuesHolder propertyValuesHolder = PropertyValuesHolder.ofInt(propertyName, values);
PropertyValuesHolderTest.java 123 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofInt(mProperty, values);
149 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofInt(colorProperty, values);
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityViewHelper.java 60 Animator anim = ObjectAnimator.ofInt(bouncerFrame, "alpha", 0, 255);
86 Animator anim = ObjectAnimator.ofInt(bouncerFrame, "alpha", 255, 0);
  /frameworks/base/core/java/android/animation/
KeyframeSet.java 51 public static KeyframeSet ofInt(int... values) {
55 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f);
56 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]);
58 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0]);
61 (IntKeyframe) Keyframe.ofInt((float) i / (numKeyframes - 1), values[i]);
Keyframe.java 73 public static Keyframe ofInt(float fraction, int value) {
89 public static Keyframe ofInt(float fraction) {
ObjectAnimator.java 206 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) {
224 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) {
348 setValues(PropertyValuesHolder.ofInt(mProperty, values));
350 setValues(PropertyValuesHolder.ofInt(mPropertyName, values));
500 * <code>ObjectAnimator.ofInt(target, propertyName, 0, 10).setDuration(500).start()</code>.
LayoutTransition.java 280 PropertyValuesHolder pvhLeft = PropertyValuesHolder.ofInt("left", 0, 1);
281 PropertyValuesHolder pvhTop = PropertyValuesHolder.ofInt("top", 0, 1);
282 PropertyValuesHolder pvhRight = PropertyValuesHolder.ofInt("right", 0, 1);
283 PropertyValuesHolder pvhBottom = PropertyValuesHolder.ofInt("bottom", 0, 1);
284 PropertyValuesHolder pvhScrollX = PropertyValuesHolder.ofInt("scrollX", 0, 1);
285 PropertyValuesHolder pvhScrollY = PropertyValuesHolder.ofInt("scrollY", 0, 1);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
LayoutAnimationsHideShow.java 115 PropertyValuesHolder.ofInt("left", 0, 1);
117 PropertyValuesHolder.ofInt("top", 0, 1);
119 PropertyValuesHolder.ofInt("right", 0, 1);
121 PropertyValuesHolder.ofInt("bottom", 0, 1);
LayoutAnimations.java 151 PropertyValuesHolder.ofInt("left", 0, 1);
153 PropertyValuesHolder.ofInt("top", 0, 1);
155 PropertyValuesHolder.ofInt("right", 0, 1);
157 PropertyValuesHolder.ofInt("bottom", 0, 1);
  /packages/apps/Browser/src/com/android/browser/
PhoneUi.java 308 ObjectAnimator tx = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
310 ObjectAnimator ty = ObjectAnimator.ofInt(mAnimScreen.mContent, "top",
312 ObjectAnimator tr = ObjectAnimator.ofInt(mAnimScreen.mContent, "right",
314 ObjectAnimator tb = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom",
407 ObjectAnimator l = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
409 ObjectAnimator t = ObjectAnimator.ofInt(mAnimScreen.mContent, "top",
411 ObjectAnimator r = ObjectAnimator.ofInt(mAnimScreen.mContent, "right",
413 ObjectAnimator b = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom",
  /frameworks/base/core/java/android/transition/
ChangeBounds.java 155 pvh[pvhIndex++] = PropertyValuesHolder.ofInt("left", startLeft, endLeft);
158 pvh[pvhIndex++] = PropertyValuesHolder.ofInt("top", startTop, endTop);
161 pvh[pvhIndex++] = PropertyValuesHolder.ofInt("right",
165 pvh[pvhIndex++] = PropertyValuesHolder.ofInt("bottom",
ChangeText.java 213 outAnim = ValueAnimator.ofInt(255, 0);
240 inAnim = ValueAnimator.ofInt(0, 255);
Crossfade.java 200 anim = ObjectAnimator.ofInt(startDrawable, "alpha", 255, 0, 0);
202 anim = ObjectAnimator.ofInt(startDrawable, "alpha", 0);
  /development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/
Bouncer3.java 120 return ObjectAnimator.ofInt(this, "shapeY", 0, (getHeight() - mShapeH));
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapMutateActivity.java 46 mAnimator = ObjectAnimator.ofInt(view, "offset", 0, PATTERN_SIZE - 1);
  /packages/apps/Contacts/src/com/android/contacts/activities/
PhotoSelectionActivity.java 341 PropertyValuesHolder.ofInt("left", mOriginalPos.left, left);
343 PropertyValuesHolder.ofInt("top", mOriginalPos.top, top);
345 PropertyValuesHolder.ofInt("right", mOriginalPos.right, right);
347 PropertyValuesHolder.ofInt("bottom", mOriginalPos.bottom, bottom);
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
TileDrawable.java 33 mFadeOutAnimator = ValueAnimator.ofInt(255, 0)
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
PictureDetailsActivity.java 165 ObjectAnimator bgAnim = ObjectAnimator.ofInt(mBackground, "alpha", 0, 255);
225 ObjectAnimator bgAnim = ObjectAnimator.ofInt(mBackground, "alpha", 0);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
FloatingChildLayout.java 62 private ObjectAnimator mBackgroundAnimator = ObjectAnimator.ofInt(this,
208 ObjectAnimator.ofInt(this, "backgroundColorAlpha", DIM_BACKGROUND_ALPHA, 0).
  /packages/apps/Dialer/src/com/android/dialer/list/
TileInteractionTeaserView.java 104 ValueAnimator heightAnimator = ValueAnimator.ofInt(start, end);
  /packages/apps/Launcher2/src/com/android/launcher2/
AppWidgetResizeFrame.java 442 PropertyValuesHolder width = PropertyValuesHolder.ofInt("width", lp.width, newWidth);
443 PropertyValuesHolder height = PropertyValuesHolder.ofInt("height", lp.height,
445 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", lp.x, newX);
446 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", lp.y, newY);
  /packages/apps/Launcher3/src/com/android/launcher3/
AppWidgetResizeFrame.java 440 PropertyValuesHolder width = PropertyValuesHolder.ofInt("width", lp.width, newWidth);
441 PropertyValuesHolder height = PropertyValuesHolder.ofInt("height", lp.height,
443 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", lp.x, newX);
444 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", lp.y, newY);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationLongPressTipView.java 215 ObjectAnimator.ofInt(this, "animatedHeight", start, end);

Completed in 907 milliseconds

1 2 3