/cts/tests/tests/animation/src/android/animation/cts/ |
AnimatorSetTest.java | 107 ValueAnimator anim1 = ValueAnimator.ofFloat(0f, 1f); 221 ValueAnimator anim1 = ValueAnimator.ofFloat(0f, 100f); 222 ValueAnimator anim2 = ValueAnimator.ofFloat(10f, 100f); 240 final ValueAnimator zAnimator = ValueAnimator.ofFloat(0f, 100f); 287 ValueAnimator a1 = ValueAnimator.ofFloat(0f, 100f); 289 ValueAnimator a2 = ValueAnimator.ofFloat(0f, 100f); 301 ValueAnimator a3 = ValueAnimator.ofFloat(0f, 100f); 303 ValueAnimator a4 = ValueAnimator.ofFloat(0f, 100f); 347 ValueAnimator a1 = ValueAnimator.ofFloat(0f, 100f); 349 ValueAnimator a2 = ValueAnimator.ofFloat(0f, 100f) [all...] |
ValueAnimatorTest.java | 148 final ValueAnimator anim = ValueAnimator.ofFloat(0f, 1f); 171 final ValueAnimator anim = ValueAnimator.ofFloat(0, 100).setDuration(mDuration); 172 final ValueAnimator delayedAnim = ValueAnimator.ofFloat(0, 100).setDuration(mDuration); 234 ValueAnimator a1 = ValueAnimator.ofFloat(0, 1f); 259 final ValueAnimator anim = ValueAnimator.ofFloat(0, 1).setDuration(duration); 292 final ValueAnimator anim = ValueAnimator.ofFloat(0, 100).setDuration(mDuration); 318 final ValueAnimator anim = ValueAnimator.ofFloat(0, 100).setDuration(mDuration); 348 ValueAnimator a1 = ValueAnimator.ofFloat(0, 1f); 381 PropertyValuesHolder p1 = PropertyValuesHolder.ofFloat("scaleX", 0f, 1f); 382 PropertyValuesHolder p2 = PropertyValuesHolder.ofFloat("scaleY", 1f, 2f) [all...] |
PropertyValuesHolderTest.java | 99 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(mProperty, values); 106 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat("", values); 114 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(mProperty, values); 123 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(mProperty, dummyValues); 163 Keyframe emptyKeyframe1 = Keyframe.ofFloat(.0f); 164 ObjectAnimator objAnimator1 = createAnimator(emptyKeyframe1, Keyframe.ofFloat(1f, 100f)); 175 Keyframe emptyKeyframe2 = Keyframe.ofFloat(.0f); 176 ObjectAnimator objAnimator2 = createAnimator(emptyKeyframe2, Keyframe.ofFloat(1f, 200f)); 190 Keyframe fullKeyframe = Keyframe.ofFloat(.0f, 333f); 191 ObjectAnimator objAnimator3 = createAnimator(fullKeyframe, Keyframe.ofFloat(1f, 500f)) [all...] |
AnimationActivity.java | 84 ValueAnimator valueAnimator = ObjectAnimator.ofFloat(object, propertyName, start,end); 136 ValueAnimator bounceAnimator = ObjectAnimator.ofFloat(view.newBall, "y", mStartY, 223 ValueAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f);
|
AnimatorTest.java | 137 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY); 218 final ObjectAnimator animator = ObjectAnimator.ofFloat(new AnimTarget(), "y", 0, 100);
|
/development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/ |
PlayerSetupActivity.java | 172 PropertyValuesHolder.ofFloat(View.SCALE_X, 3); 174 PropertyValuesHolder.ofFloat(View.SCALE_Y, 3); 183 PropertyValuesHolder.ofFloat(View.TRANSLATION_X, 0); 185 PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, 0); 300 PropertyValuesHolder pvhSX = PropertyValuesHolder.ofFloat(View.SCALE_X, 1); 301 PropertyValuesHolder pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1); 322 ObjectAnimator currentSkewer = ObjectAnimator.ofFloat(currentView, "skewX", -.5f); 324 ObjectAnimator currentMover = ObjectAnimator.ofFloat(currentView, View.TRANSLATION_X, 335 ObjectAnimator nextMover = ObjectAnimator.ofFloat(nextView, View.TRANSLATION_X, 0); 338 ObjectAnimator nextSkewer = ObjectAnimator.ofFloat(nextView, "skewX", 0) [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
LayoutAnimations.java | 159 PropertyValuesHolder.ofFloat("scaleX", 1f, 0f, 1f); 161 PropertyValuesHolder.ofFloat("scaleY", 1f, 0f, 1f); 174 Keyframe kf0 = Keyframe.ofFloat(0f, 0f); 175 Keyframe kf1 = Keyframe.ofFloat(.9999f, 360f); 176 Keyframe kf2 = Keyframe.ofFloat(1f, 0f); 190 customAppearingAnim = ObjectAnimator.ofFloat(null, "rotationY", 90f, 0f). 200 customDisappearingAnim = ObjectAnimator.ofFloat(null, "rotationX", 0f, 90f).
|
ListFlipper.java | 107 ObjectAnimator visToInvis = ObjectAnimator.ofFloat(visibleList, "rotationY", 0f, 90f); 110 final ObjectAnimator invisToVis = ObjectAnimator.ofFloat(invisibleList, "rotationY",
|
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).
|
PathAnimations.java | 148 mAnimator = ObjectAnimator.ofFloat(view, "x", "y", path); 155 mAnimator = ObjectAnimator.ofFloat(view, View.X, View.Y, path);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
ShadowCardDrag.java | 100 ObjectAnimator flattenX = ObjectAnimator.ofFloat(mCard, "rotationX", 0); 105 ObjectAnimator flattenY = ObjectAnimator.ofFloat(mCard, "rotationY", 0); 218 ObjectAnimator upAnim = ObjectAnimator.ofFloat(mCard, "translationZ", 235 ObjectAnimator downAnim = ObjectAnimator.ofFloat(mCard, "translationZ", 0);
|
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/ |
PictureDetailsActivity.java | 171 ObjectAnimator colorizer = ObjectAnimator.ofFloat(PictureDetailsActivity.this, 177 ObjectAnimator shadowAnim = ObjectAnimator.ofFloat(mShadowLayout, "shadowDepth", 0, 1); 230 ObjectAnimator shadowAnim = ObjectAnimator.ofFloat(mShadowLayout, 238 ObjectAnimator.ofFloat(PictureDetailsActivity.this,
|
/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,
|
/developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
AnimatedNotificationDisplayActivity.java | 78 PropertyValuesHolder.ofFloat("translationX", startX, endX), 79 PropertyValuesHolder.ofFloat("translationY", startY, endY));
|
/developers/samples/android/deprecated/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
AnimatedNotificationDisplayActivity.java | 78 PropertyValuesHolder.ofFloat("translationX", startX, endX), 79 PropertyValuesHolder.ofFloat("translationY", startY, endY));
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
AnimatedNotificationDisplayActivity.java | 78 PropertyValuesHolder.ofFloat("translationX", startX, endX), 79 PropertyValuesHolder.ofFloat("translationY", startY, endY));
|
/developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/ |
DigitalWatchFaceWearableConfigActivity.java | 235 mShrinkCircleAnimator = ObjectAnimator.ofFloat(mColor, "circleRadius", 237 mShrinkLabelAnimator = ObjectAnimator.ofFloat(mLabel, "alpha", 242 mExpandCircleAnimator = ObjectAnimator.ofFloat(mColor, "circleRadius", 244 mExpandLabelAnimator = ObjectAnimator.ofFloat(mLabel, "alpha",
|
/developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/ |
DigitalWatchFaceWearableConfigActivity.java | 235 mShrinkCircleAnimator = ObjectAnimator.ofFloat(mColor, "circleRadius", 237 mShrinkLabelAnimator = ObjectAnimator.ofFloat(mLabel, "alpha", 242 mExpandCircleAnimator = ObjectAnimator.ofFloat(mColor, "circleRadius", 244 mExpandLabelAnimator = ObjectAnimator.ofFloat(mLabel, "alpha",
|
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/ |
DigitalWatchFaceWearableConfigActivity.java | 233 mShrinkCircleAnimator = ObjectAnimator.ofFloat(mColor, "circleRadius", 235 mShrinkLabelAnimator = ObjectAnimator.ofFloat(mLabel, "alpha", 240 mExpandCircleAnimator = ObjectAnimator.ofFloat(mColor, "circleRadius", 242 mExpandLabelAnimator = ObjectAnimator.ofFloat(mLabel, "alpha",
|
/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);
|
/cts/tests/tests/transition/src/android/transition/cts/ |
BaseTransitionTest.java | 192 return ObjectAnimator.ofFloat(BaseTransitionTest.this, "animatedValue", 0, 1); 199 return ObjectAnimator.ofFloat(BaseTransitionTest.this, "animatedValue", 1, 0);
|