HomeSort by relevance Sort by last modified time
    Searched refs:ofFloat (Results 51 - 75 of 172) sorted by null

1 23 4 5 6 7

  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertionListView.java 145 ObjectAnimator textAlphaAnimator = ObjectAnimator.ofFloat(textView,
169 ObjectAnimator imgViewTranslation = ObjectAnimator.ofFloat(copyImgView,
172 PropertyValuesHolder imgViewScaleY = PropertyValuesHolder.ofFloat
174 PropertyValuesHolder imgViewScaleX = PropertyValuesHolder.ofFloat
203 ObjectAnimator animation = ObjectAnimator.ofFloat(child,
213 ObjectAnimator animation = ObjectAnimator.ofFloat(child,
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorSetTest.java 134 ObjectAnimator xAnimator = ObjectAnimator.ofFloat(object, propertyX, startX, endX);
146 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
ObjectAnimatorTest.java 57 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
77 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
202 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
223 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
AnimationActivity.java 85 ValueAnimator valueAnimator = ObjectAnimator.ofFloat(object, propertyName, start,end);
137 ValueAnimator bounceAnimator = ObjectAnimator.ofFloat(view.newBall, "y", mStartY,
219 ValueAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f);
ValueAnimatorTest.java 120 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
171 final ValueAnimator valueAnimatorLocal = ValueAnimator.ofFloat(values);
220 ValueAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
LayoutAnimationTest.java 114 PropertyValuesHolder pvhAlpha = PropertyValuesHolder.ofFloat("alpha", startAlpha,
132 PropertyValuesHolder pvhAlpha = PropertyValuesHolder.ofFloat("alpha", startAlpha,
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
AnimationHelper.java 190 PropertyValuesHolder.ofFloat("translationY", translation, 0.0f);
193 PropertyValuesHolder.ofFloat("translationY", 0.0f, -translation);
ContentWrapperView.java 230 hideAnimator = ObjectAnimator.ofFloat(mViewToHide, "alpha", 1.0f, 0.0f);
234 showAnimator = ObjectAnimator.ofFloat(mViewToShow, "alpha", 0.0f, 1.0f);
  /frameworks/base/core/tests/coretests/src/android/animation/
AutoCancelTest.java 45 returnVal = ObjectAnimator.ofFloat(this, properties[0], 0, 1);
49 pvhArray[i] = PropertyValuesHolder.ofFloat(properties[i], 0, 1);
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 244 public static ObjectAnimator ofFloat(Object target, String propertyName, float... values) {
262 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property,
363 setValues(PropertyValuesHolder.ofFloat(mProperty, values));
365 setValues(PropertyValuesHolder.ofFloat(mPropertyName, values));
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegionActivity.java 43 ObjectAnimator animator = ObjectAnimator.ofFloat(group, "clipPosition", 0.0f, 1.0f);
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
HitRectBug.java 63 ObjectAnimator anim = ObjectAnimator.ofFloat(mImageView, View.ROTATION, 0, 360);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TrimControllerOverlay.java 56 ObjectAnimator anim = ObjectAnimator.ofFloat(mPlayPauseReplayView, "alpha", 1f, 0f);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationCloning.java 80 ObjectAnimator anim1 = ObjectAnimator.ofFloat(balls.get(0), "y",
87 ObjectAnimator animDown = ObjectAnimator.ofFloat(ball2, "y",
90 ObjectAnimator animUp = ObjectAnimator.ofFloat(ball2, "y",
AnimatorEvents.java 120 ObjectAnimator yAnim = ObjectAnimator.ofFloat(ball, "y",
128 ObjectAnimator xAnim = ObjectAnimator.ofFloat(ball, "x",
135 ObjectAnimator alphaAnim = ObjectAnimator.ofFloat(ball, "alpha", 1f, .5f).
  /packages/apps/Dialer/src/com/android/dialer/list/
PhoneFavoriteTileView.java 148 final ObjectAnimator fadeIn = ObjectAnimator.ofFloat(mRemovalDialogue, "alpha",
174 final ObjectAnimator fadeIn = ObjectAnimator.ofFloat(mFavoriteContactCard, "alpha", 1.f).
176 final ObjectAnimator moveBack = ObjectAnimator.ofFloat(mFavoriteContactCard, "translationX",
  /packages/apps/Browser/src/com/android/browser/
PhoneUi.java 316 ObjectAnimator title = ObjectAnimator.ofFloat(mAnimScreen.mTitle, "alpha",
318 ObjectAnimator sx = ObjectAnimator.ofFloat(mAnimScreen, "scaleFactor",
320 ObjectAnimator blend1 = ObjectAnimator.ofFloat(mAnimScreen.mMain,
402 ObjectAnimator fade2 = ObjectAnimator.ofFloat(mAnimScreen.mMain, "alpha", 0f, 1f);
403 ObjectAnimator fade1 = ObjectAnimator.ofFloat(mNavScreen, "alpha", 1f, 0f);
415 ObjectAnimator scale = ObjectAnimator.ofFloat(mAnimScreen, "scaleFactor",
417 ObjectAnimator otheralpha = ObjectAnimator.ofFloat(mCustomViewContainer, "alpha", 1f, 0f);
NavigationBarTablet.java 273 Animator anim1 = ObjectAnimator.ofFloat(mNavButtons, View.TRANSLATION_X, 0, - awidth);
276 Animator anim3 = ObjectAnimator.ofFloat(mNavButtons, View.ALPHA, 1f, 0f);
298 Animator anim1 = ObjectAnimator.ofFloat(mNavButtons,
302 Animator anim3 = ObjectAnimator.ofFloat(mNavButtons, View.ALPHA,
  /frameworks/base/core/java/android/widget/
StackView.java 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);
347 PropertyValuesHolder translationY = PropertyValuesHolder.ofFloat("translationY", transY);
348 PropertyValuesHolder scalePropX = PropertyValuesHolder.ofFloat("scaleX", scale);
349 PropertyValuesHolder scalePropY = PropertyValuesHolder.ofFloat("scaleY", scale);
858 PropertyValuesHolder snapBackY = PropertyValuesHolder.ofFloat("YProgress", finalYProgress);
859 PropertyValuesHolder snapBackX = PropertyValuesHolder.ofFloat("XProgress", 0.0f)
    [all...]
  /development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/
Bouncer.java 132 ValueAnimator anim = ValueAnimator.ofFloat(0, 1);
Bouncer1.java 117 ValueAnimator anim = ValueAnimator.ofFloat(0, 1);
Bouncer2.java 120 ValueAnimator anim = ValueAnimator.ofFloat(0, 1);
  /development/samples/devbytes/animation/ListViewAnimations/src/com/example/android/listviewanimations/
ListViewAnimations.java 80 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.ALPHA, 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarTransitions.java 56 return ObjectAnimator.ofFloat(v, "alpha", v.getAlpha(), toAlpha);
  /frameworks/base/core/java/android/transition/
Crossfade.java 214 anim1 = ObjectAnimator.ofFloat(view, View.ALPHA, 0, 0, 1);
216 anim1 = ObjectAnimator.ofFloat(view, View.ALPHA, 0, 1);

Completed in 301 milliseconds

1 23 4 5 6 7