HomeSort by relevance Sort by last modified time
    Searched refs:ObjectAnimator (Results 26 - 50 of 252) sorted by null

12 3 4 5 6 7 8 91011

  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityViewHelper.java 21 import android.animation.ObjectAnimator;
37 Animator anim = ObjectAnimator.ofFloat(ecaView, "alpha", 0f);
60 Animator anim = ObjectAnimator.ofInt(bouncerFrame, "alpha", 0, 255);
77 Animator anim = ObjectAnimator.ofFloat(ecaView, "alpha", 1f);
86 Animator anim = ObjectAnimator.ofInt(bouncerFrame, "alpha", 255, 0);
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
CcBccView.java 20 import android.animation.ObjectAnimator;
70 ObjectAnimator bccAnimator = ObjectAnimator.ofFloat(mBcc, "alpha", 0, 1);
75 ObjectAnimator ccAnimator = ObjectAnimator.ofFloat(mCc, "alpha", 0, 1);
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorSetTest.java 25 import android.animation.ObjectAnimator;
39 private ObjectAnimator yAnimator;
40 private ObjectAnimator xAnimator;
131 assertEquals(interpolator, ((ObjectAnimator)animatorList.get(0)).getInterpolator());
132 assertEquals(interpolator, ((ObjectAnimator)animatorList.get(1)).getInterpolator());
135 public ObjectAnimator getXAnimator(Object object) {
139 ObjectAnimator xAnimator = ObjectAnimator.ofFloat(object, propertyX, startX, endX);
147 public ObjectAnimator getYAnimator(Object object) {
151 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY)
    [all...]
PropertyValuesHolderTest.java 22 import android.animation.ObjectAnimator;
85 ObjectAnimator objAnimator = ObjectAnimator.ofPropertyValuesHolder(mObject,pVHolder);
95 private ObjectAnimator createAnimator(Keyframe... keyframes) {
97 ObjectAnimator objAnimator = ObjectAnimator.ofPropertyValuesHolder(mObject,pVHolder);
103 private void waitUntilFinished(ObjectAnimator objectAnimator, long timeoutMilliseconds)
106 objectAnimator.addListener(new AnimatorListenerAdapter() {
138 ObjectAnimator objAnimator1 = createAnimator(emptyKeyframe1, Keyframe.ofFloat(1f, 100f))
    [all...]
AnimationActivity.java 23 import android.animation.ObjectAnimator;
85 ValueAnimator valueAnimator = ObjectAnimator.ofFloat(object, propertyName, start,end);
116 ObjectAnimator objAnimator = ObjectAnimator.ofInt(object, propertyName, start,end);
126 ObjectAnimator objAnimator = ObjectAnimator.ofInt(view.newBall, "y", (int)mStartY,
137 ValueAnimator bounceAnimator = ObjectAnimator.ofFloat(view.newBall, "y", mStartY,
165 public void startAnimation(ObjectAnimator bounceAnimator) {
171 public void startAnimation(ObjectAnimator bounceAnimator, ObjectAnimator colorAnimator)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShadowCardStack.java 21 import android.animation.ObjectAnimator;
71 Animator expand = ObjectAnimator.ofFloat(card, "translationY", targetY);
74 Animator toward = ObjectAnimator.ofFloat(card, "translationZ", i * Z);
79 Animator rotateAway = ObjectAnimator.ofFloat(card, "rotationY",
84 Animator slideAway = ObjectAnimator.ofFloat(card, "translationX",
90 Animator rotateBack = ObjectAnimator.ofFloat(card, "rotationY", 0);
93 Animator slideBack = ObjectAnimator.ofFloat(card, "translationX", 0);
97 Animator away = ObjectAnimator.ofFloat(card, "translationZ", 0);
101 Animator collapse = ObjectAnimator.ofFloat(card, "translationY", 0);
  /development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java 22 import android.animation.ObjectAnimator;
32 * This example shows how to use property animations, specifically ObjectAnimator, to perform
56 ObjectAnimator alphaAnimation = ObjectAnimator.ofFloat(alphaButton,
62 ObjectAnimator translateAnimation =
63 ObjectAnimator.ofFloat(translateButton, View.TRANSLATION_X, 800);
68 ObjectAnimator rotateAnimation =
69 ObjectAnimator.ofFloat(rotateButton, View.ROTATION, 360);
77 ObjectAnimator scaleAnimation =
78 ObjectAnimator.ofPropertyValuesHolder(scaleButton, pvhX, pvhY)
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/widget/accessibility/
AccessibilityTabModelListItem.java 10 import android.animation.ObjectAnimator;
469 ObjectAnimator swipe = ObjectAnimator.ofFloat(this, View.TRANSLATION_X,
471 ObjectAnimator fadeOut = ObjectAnimator.ofFloat(this, View.ALPHA, 0.f);
485 ObjectAnimator swipe = ObjectAnimator.ofFloat(this, View.TRANSLATION_X, 0.f);
486 ObjectAnimator fadeIn = ObjectAnimator.ofFloat(this, View.ALPHA, 1.f);
487 ObjectAnimator scaleX = ObjectAnimator.ofFloat(this, View.SCALE_X, 1.f)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyPreviewDrawParams.java 22 import android.animation.ObjectAnimator;
150 final ObjectAnimator scaleXAnimator = ObjectAnimator.ofFloat(
153 final ObjectAnimator scaleYAnimator = ObjectAnimator.ofFloat(
171 final ObjectAnimator scaleXAnimator = ObjectAnimator.ofFloat(
173 final ObjectAnimator scaleYAnimator = ObjectAnimator.ofFloat(
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
LayoutAnimationsHideShow.java 22 import android.animation.ObjectAnimator;
126 final ObjectAnimator changeIn = ObjectAnimator.ofPropertyValuesHolder(
132 View view = (View) ((ObjectAnimator) anim).getTarget();
144 final ObjectAnimator changeOut = ObjectAnimator.ofPropertyValuesHolder(
150 View view = (View) ((ObjectAnimator) anim).getTarget();
156 ObjectAnimator animIn = ObjectAnimator.ofFloat(null, "rotationY", 90f, 0f).
161 View view = (View) ((ObjectAnimator) anim).getTarget()
    [all...]
ListFlipper.java 23 import android.animation.ObjectAnimator;
107 ObjectAnimator visToInvis = ObjectAnimator.ofFloat(visibleList, "rotationY", 0f, 90f);
110 final ObjectAnimator invisToVis = ObjectAnimator.ofFloat(invisibleList, "rotationY",
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
PictureDetailsActivity.java 19 import android.animation.ObjectAnimator;
165 ObjectAnimator bgAnim = ObjectAnimator.ofInt(mBackground, "alpha", 0, 255);
171 ObjectAnimator colorizer = ObjectAnimator.ofFloat(PictureDetailsActivity.this,
177 ObjectAnimator shadowAnim = ObjectAnimator.ofFloat(mShadowLayout, "shadowDepth", 0, 1);
225 ObjectAnimator bgAnim = ObjectAnimator.ofInt(mBackground, "alpha", 0);
230 ObjectAnimator shadowAnim = ObjectAnimator.ofFloat(mShadowLayout
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
Utils.java 20 import android.animation.ObjectAnimator;
125 public static ObjectAnimator getPulseAnimator(View labelToAnimate, float decreaseRatio,
134 ObjectAnimator pulseAnimator =
135 ObjectAnimator.ofPropertyValuesHolder(labelToAnimate, scaleX, scaleY);
  /packages/apps/Browser/src/com/android/browser/
PhoneUi.java 22 import android.animation.ObjectAnimator;
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",
313 ObjectAnimator title = ObjectAnimator.ofFloat(mAnimScreen.mTitle, "alpha"
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapMutateActivity.java 19 import android.animation.ObjectAnimator;
34 private ObjectAnimator mAnimator;
46 mAnimator = ObjectAnimator.ofInt(view, "offset", 0, PATTERN_SIZE - 1);
48 mAnimator.setRepeatCount(ObjectAnimator.INFINITE);
49 mAnimator.setRepeatMode(ObjectAnimator.REVERSE);
ClipOutlineActivity.java 19 import android.animation.ObjectAnimator;
46 ObjectAnimator animator = ObjectAnimator.ofFloat(group, "clipPosition", 0.0f, 1.0f);
ClipRegionActivity.java 19 import android.animation.ObjectAnimator;
43 ObjectAnimator animator = ObjectAnimator.ofFloat(group, "clipPosition", 0.0f, 1.0f);
  /frameworks/base/graphics/java/android/graphics/drawable/
Ripple.java 21 import android.animation.ObjectAnimator;
75 private ObjectAnimator mAnimRadius;
76 private ObjectAnimator mAnimOpacity;
77 private ObjectAnimator mAnimX;
78 private ObjectAnimator mAnimY;
292 final ObjectAnimator radius = ObjectAnimator.ofFloat(this, "radiusGravity", 1);
298 final ObjectAnimator cX = ObjectAnimator.ofFloat(this, "xGravity", 1);
304 final ObjectAnimator cY = ObjectAnimator.ofFloat(this, "yGravity", 1)
    [all...]
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardView.java 23 import android.animation.ObjectAnimator;
142 ObjectAnimator cardAnimator = ObjectAnimator.ofPropertyValuesHolder(this, rotation,
158 ObjectAnimator colorizer = ObjectAnimator.ofPropertyValuesHolder(this,
255 public ObjectAnimator getRotationAnimator (int cardFromTop, Corner corner,
268 return ObjectAnimator.ofFloat(this, View.ROTATION, rotation);
277 public ObjectAnimator getFullRotationAnimator (int cardFromTop, Corner corner,
285 ObjectAnimator animator = ObjectAnimator.ofFloat(this, View.ROTATION, rotation)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
SgvAnimationHelper.java 9 import android.animation.ObjectAnimator;
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
    [all...]
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
PlayerSetupActivity.java 22 import android.animation.ObjectAnimator;
175 ObjectAnimator bounceAnim = ObjectAnimator.ofPropertyValuesHolder(
186 ObjectAnimator moveAnim = ObjectAnimator.ofPropertyValuesHolder(
295 ObjectAnimator[] childAnims = new ObjectAnimator[childCount];
302 ObjectAnimator anim = ObjectAnimator.ofPropertyValuesHolder(child, pvhSX, pvhSY);
322 ObjectAnimator currentSkewer = ObjectAnimator.ofFloat(currentView, "skewX", -.5f)
    [all...]
  /frameworks/base/core/java/android/transition/
ChangeScroll.java 20 import android.animation.ObjectAnimator;
75 scrollXAnimator = ObjectAnimator.ofInt(view, "scrollX", startX, endX);
79 scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY);
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
HitRectBug.java 18 import android.animation.ObjectAnimator;
63 ObjectAnimator anim = ObjectAnimator.ofFloat(mImageView, View.ROTATION, 0, 360);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TrimControllerOverlay.java 21 import android.animation.ObjectAnimator;
56 ObjectAnimator anim = ObjectAnimator.ofFloat(mPlayPauseReplayView, "alpha", 1f, 0f);
  /development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/
Bouncer3.java 19 import android.animation.ObjectAnimator;
108 // This variation uses an ObjectAnimator. The functionality is exactly the same as
110 // tell ObjectAnimator to automatically animate the target object for us, so we no
112 ObjectAnimator anim = getObjectAnimator();
119 ObjectAnimator getObjectAnimator() {
120 return ObjectAnimator.ofInt(this, "shapeY", 0, (getHeight() - mShapeH));

Completed in 1192 milliseconds

12 3 4 5 6 7 8 91011