/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/ |
RadialTextsView.java | 295 kf0 = Keyframe.ofFloat(0f, 1); 296 kf1 = Keyframe.ofFloat(midwayPoint, mTransitionMidRadiusMultiplier); 297 kf2 = Keyframe.ofFloat(1f, mTransitionEndRadiusMultiplier); 301 kf0 = Keyframe.ofFloat(0f, 1f); 302 kf1 = Keyframe.ofFloat(1f, 0f); 318 kf0 = Keyframe.ofFloat(0f, mTransitionEndRadiusMultiplier); 319 kf1 = Keyframe.ofFloat(delayPoint, mTransitionEndRadiusMultiplier); 320 kf2 = Keyframe.ofFloat(midwayPoint, mTransitionMidRadiusMultiplier); 321 kf3 = Keyframe.ofFloat(1f, 1); 325 kf0 = Keyframe.ofFloat(0f, 0f) [all...] |
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardSecurityViewHelper.java | 37 Animator anim = ObjectAnimator.ofFloat(ecaView, "alpha", 0f); 77 Animator anim = ObjectAnimator.ofFloat(ecaView, "alpha", 1f);
|
KeyguardWidgetCarousel.java | 172 alpha = PropertyValuesHolder.ofFloat("contentAlpha", 1.0f); 173 outlineAlpha = PropertyValuesHolder.ofFloat("backgroundAlpha", 175 rotationY = PropertyValuesHolder.ofFloat("rotationY", 0f); 248 alpha = PropertyValuesHolder.ofFloat("contentAlpha", finalAlpha); 249 outlineAlpha = PropertyValuesHolder.ofFloat("backgroundAlpha", finalOutlineAlpha); 250 pivotX = PropertyValuesHolder.ofFloat("pivotX", mTmpTransform[0]); 251 pivotY = PropertyValuesHolder.ofFloat("pivotY", mTmpTransform[1]); 252 rotationY = PropertyValuesHolder.ofFloat("rotationY", mTmpTransform[2]);
|
/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
CcBccView.java | 70 ObjectAnimator bccAnimator = ObjectAnimator.ofFloat(mBcc, "alpha", 0, 1); 75 ObjectAnimator ccAnimator = ObjectAnimator.ofFloat(mCc, "alpha", 0, 1);
|
/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...] |
/cts/tests/tests/animation/src/android/animation/cts/ |
PropertyValuesHolderTest.java | 55 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(mProperty, values); 61 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat("", values); 68 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(mProperty, values); 76 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(mProperty, dummyValues); 91 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(mProperty, values); 107 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(property, values); 172 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat("", values);
|
/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",
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
EditorAnimator.java | 58 ObjectAnimator.ofFloat(victim, View.ALPHA, 1.0f, 0.0f); 107 final ObjectAnimator fadeInAnimator = ObjectAnimator.ofFloat( 134 final ObjectAnimator fadeOutAnimator = ObjectAnimator.ofFloat( 143 final ObjectAnimator fadeInAnimator = ObjectAnimator.ofFloat( 173 final ObjectAnimator fadeInAnimator = ObjectAnimator.ofFloat( 194 ObjectAnimator.ofFloat(victim, View.ALPHA, 1.0f, 0.0f); 226 ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, fromY, toY);
|
/frameworks/base/core/java/android/animation/ |
KeyframeSet.java | 67 public static KeyframeSet ofFloat(float... values) { 72 keyframes[0] = (FloatKeyframe) Keyframe.ofFloat(0f); 73 keyframes[1] = (FloatKeyframe) Keyframe.ofFloat(1f, values[0]); 78 keyframes[0] = (FloatKeyframe) Keyframe.ofFloat(0f, values[0]); 81 (FloatKeyframe) Keyframe.ofFloat((float) i / (numKeyframes - 1), values[i]);
|
Keyframe.java | 105 public static Keyframe ofFloat(float fraction, float value) { 121 public static Keyframe ofFloat(float fraction) {
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ViewLayersActivity.java | 53 final ObjectAnimator moveRight = ObjectAnimator.ofFloat(leftList, 59 final ObjectAnimator moveLeft = ObjectAnimator.ofFloat(rightList, 65 final ObjectAnimator rotate = ObjectAnimator.ofFloat(middleList,
|
Animated3dActivity.java | 45 ObjectAnimator animator = ObjectAnimator.ofFloat(view, "rotationY", 0.0f, 360.0f);
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
SgvAnimationHelper.java | 119 final ObjectAnimator translateAnimatorX = ObjectAnimator.ofFloat(view, 140 final ObjectAnimator translateAnimatorY = ObjectAnimator.ofFloat(view, 173 final ObjectAnimator rotateAnimatorY = ObjectAnimator.ofFloat(view, 207 final ObjectAnimator scaleAnimatorY = ObjectAnimator.ofFloat(view, 230 final ObjectAnimator scaleAnimatorY = ObjectAnimator.ofFloat(view, View.SCALE_Y, 311 final ObjectAnimator fadeAnimator = ObjectAnimator.ofFloat(view, View.ALPHA,
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
LauncherAnimUtils.java | 93 public static ValueAnimator ofFloat(View target, float... values) { 100 public static ObjectAnimator ofFloat(View target, String propertyName, float... values) {
|
InterruptibleInOutAnimator.java | 49 mAnimator = LauncherAnimUtils.ofFloat(view, fromValue, toValue).setDuration(duration);
|
SearchDropTargetBar.java | 113 mDropTargetBarAnim = ObjectAnimator.ofFloat(mDropTargetBar, "translationY", -mBarHeight, 0f); 114 mQSBSearchBarAnim = ObjectAnimator.ofFloat(mQSBSearchBar, "translationY", 0f, -mBarHeight); 117 mDropTargetBarAnim = ObjectAnimator.ofFloat(mDropTargetBar, "alpha", 0f, 1f); 118 mQSBSearchBarAnim = ObjectAnimator.ofFloat(mQSBSearchBar, "alpha", 1f, 0f);
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherAnimUtils.java | 93 public static ValueAnimator ofFloat(View target, float... values) { 100 public static ObjectAnimator ofFloat(View target, String propertyName, float... values) {
|
InterruptibleInOutAnimator.java | 49 mAnimator = LauncherAnimUtils.ofFloat(view, fromValue, toValue).setDuration(duration);
|
SearchDropTargetBar.java | 74 mQSBSearchBarAnim = LauncherAnimUtils.ofFloat(mQSBSearchBar, "translationY", 0, 77 mQSBSearchBarAnim = LauncherAnimUtils.ofFloat(mQSBSearchBar, "alpha", 1f, 0f); 120 mDropTargetBarAnim = LauncherAnimUtils.ofFloat(mDropTargetBar, "translationY", 125 mDropTargetBarAnim = LauncherAnimUtils.ofFloat(mDropTargetBar, "alpha", 0f, 1f);
|
/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,
|
/frameworks/base/core/java/android/transition/ |
Rotate.java | 55 return ObjectAnimator.ofFloat(view, View.ROTATION,
|
/frameworks/base/core/java/com/android/internal/widget/ |
AbsActionBarView.java | 133 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 1); 138 ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 1); 148 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 0); 153 ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 0);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
KeyButtonView.java | 145 return ObjectAnimator.ofFloat(this, "drawingAlpha", mQuiescentAlpha); 218 ObjectAnimator.ofFloat(this, "glowAlpha", 1f), 219 ObjectAnimator.ofFloat(this, "glowScale", GLOW_MAX_SCALE_FACTOR) 226 ObjectAnimator.ofFloat(this, "glowAlpha", 0f), 227 ObjectAnimator.ofFloat(this, "glowScale", 1f),
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
Utils.java | 290 ObjectAnimator.ofFloat(mSaverView, "alpha", 0f, 1f) 295 Animator xMove = ObjectAnimator.ofFloat(mSaverView, 297 Animator yMove = ObjectAnimator.ofFloat(mSaverView, 300 Animator xShrink = ObjectAnimator.ofFloat(mSaverView, "scaleX", 1f, 0.85f); 301 Animator xGrow = ObjectAnimator.ofFloat(mSaverView, "scaleX", 0.85f, 1f); 303 Animator yShrink = ObjectAnimator.ofFloat(mSaverView, "scaleY", 1f, 0.85f); 304 Animator yGrow = ObjectAnimator.ofFloat(mSaverView, "scaleY", 0.85f, 1f); 308 Animator fadeout = ObjectAnimator.ofFloat(mSaverView, "alpha", 1f, 0f); 309 Animator fadein = ObjectAnimator.ofFloat(mSaverView, "alpha", 0f, 1f);
|