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

1 2 3 4

  /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,
202 colorAnimator = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE);
  /frameworks/base/core/java/android/transition/
ChangeScroll.java 75 scrollXAnimator = ObjectAnimator.ofInt(view, "scrollX", startX, endX);
79 scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY);
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);
ChangeBounds.java 198 anim = ObjectAnimator.ofInt(view, new HorizontalOffsetProperty(),
210 .ofInt(view, "left", "top", topLeftPath);
216 bottomRightAnimator = ObjectAnimator.ofInt(view, "right", "bottom",
  /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 64 public static KeyframeSet ofInt(int... values) {
68 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f);
69 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]);
71 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0]);
74 (IntKeyframe) Keyframe.ofInt((float) i / (numKeyframes - 1), values[i]);
Keyframe.java 82 public static Keyframe ofInt(float fraction, int value) {
98 public static Keyframe ofInt(float fraction) {
ObjectAnimator.java 217 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) {
240 public static ObjectAnimator ofInt(Object target, String xPropertyName, String yPropertyName,
262 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) {
281 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> xProperty,
373 ObjectAnimator animator = ofInt(target, propertyName, values);
392 ObjectAnimator animator = ofInt(target, property, values);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
AnimateableViewBounds.java 80 mClipTopAnimator = ObjectAnimator.ofInt(this, "clipTop", top);
109 mClipRightAnimator = ObjectAnimator.ofInt(this, "clipRight", right);
135 mClipBottomAnimator = ObjectAnimator.ofInt(this, "clipBottom", bottom);
TaskViewFooter.java 90 mFooterAnimator = ObjectAnimator.ofInt(this, "footerHeight", finalHeight);
  /packages/apps/Camera2/src/com/android/camera/ui/
AnimatedCircleDrawable.java 87 ValueAnimator.ofInt(getLevel(), smallLevel);
101 ValueAnimator.ofInt(getLevel(), DRAWABLE_MAX_LEVEL);
TouchCircleDrawable.java 190 ValueAnimator.ofInt(0, Math.min(mW/2, mH/2));
  /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 305 ObjectAnimator tx = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
307 ObjectAnimator ty = ObjectAnimator.ofInt(mAnimScreen.mContent, "top",
309 ObjectAnimator tr = ObjectAnimator.ofInt(mAnimScreen.mContent, "right",
311 ObjectAnimator tb = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom",
404 ObjectAnimator l = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
406 ObjectAnimator t = ObjectAnimator.ofInt(mAnimScreen.mContent, "top",
408 ObjectAnimator r = ObjectAnimator.ofInt(mAnimScreen.mContent, "right",
410 ObjectAnimator b = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom",
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ColorFiltersMutateActivity.java 79 ObjectAnimator light = ObjectAnimator.ofInt(this, "lightAdd", 0x00101030);
86 ObjectAnimator mult = ObjectAnimator.ofInt(this, "lightMul", 0x0060ffff);
93 ObjectAnimator color = ObjectAnimator.ofInt(this, "porterDuffColor", 0x7f990040);
BitmapMutateActivity.java 46 mAnimator = ObjectAnimator.ofInt(view, "offset", 0, PATTERN_SIZE - 1);
  /development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/
Bouncer3.java 120 return ObjectAnimator.ofInt(this, "shapeY", 0, (getHeight() - mShapeH));
  /packages/apps/Contacts/src/com/android/contacts/activities/
PhotoSelectionActivity.java 336 PropertyValuesHolder.ofInt("left", mOriginalPos.left, left);
338 PropertyValuesHolder.ofInt("top", mOriginalPos.top, top);
340 PropertyValuesHolder.ofInt("right", mOriginalPos.right, right);
342 PropertyValuesHolder.ofInt("bottom", mOriginalPos.bottom, bottom);
  /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);
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
TileDrawable.java 54 mFadeOutAnimator = ValueAnimator.ofInt(255, 0)
  /packages/apps/Dialer/src/com/android/dialer/list/
TileInteractionTeaserView.java 104 ValueAnimator heightAnimator = ValueAnimator.ofInt(start, end);
  /packages/apps/InCallUI/src/com/android/incallui/
InCallAnimationUtils.java 58 mAnimator = ObjectAnimator.ofInt(this, "crossFadeAlpha", 0xff, 0);

Completed in 331 milliseconds

1 2 3 4