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

1 23 4 5 6 7 8 91011

  /development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java 70 ValueAnimator colorAnim = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE);
92 ValueAnimator bounceAnim = ObjectAnimator.ofFloat(newBall, "y", startY, endY);
95 ValueAnimator squashAnim1 = ObjectAnimator.ofFloat(newBall, "x", newBall.getX(),
101 ValueAnimator squashAnim2 = ObjectAnimator.ofFloat(newBall, "width", newBall.getWidth(),
107 ValueAnimator stretchAnim1 = ObjectAnimator.ofFloat(newBall, "y", endY,
113 ValueAnimator stretchAnim2 = ObjectAnimator.ofFloat(newBall, "height",
119 ValueAnimator bounceBackAnim = ObjectAnimator.ofFloat(newBall, "y", endY,
132 ValueAnimator fadeAnim = ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f);
137 balls.remove(((ObjectAnimator)animation).getTarget());
MultiPropertyAnimation.java 89 ObjectAnimator yBouncer = ObjectAnimator.ofFloat(ball, "y",
98 ObjectAnimator yAlphaBouncer = ObjectAnimator.ofPropertyValuesHolder(ball,
114 ObjectAnimator whxyBouncer = ObjectAnimator.ofPropertyValuesHolder(ball, pvhW, pvhH,
126 ObjectAnimator yxBouncer = ObjectAnimator.ofPropertyValuesHolder(ball, pvhY,
PathAnimations.java 18 import android.animation.ObjectAnimator;
90 private ObjectAnimator mAnimator;
149 mAnimator = ObjectAnimator.ofFloat(view, "x", "y", path);
156 mAnimator = ObjectAnimator.ofFloat(view, View.X, View.Y, path);
163 mAnimator = ObjectAnimator.ofMultiInt(this, "setCoordinates", path);
168 mAnimator = ObjectAnimator.ofMultiFloat(this, "changeCoordinates", path);
175 mAnimator = ObjectAnimator.ofObject(this, "point", null, path);
181 mAnimator = ObjectAnimator.ofObject(this, POINT_PROPERTY,
AnimationCloning.java 80 ObjectAnimator anim1 = ObjectAnimator.ofFloat(balls.get(0), "y",
82 ObjectAnimator anim2 = anim1.clone();
87 ObjectAnimator animDown = ObjectAnimator.ofFloat(ball2, "y",
90 ObjectAnimator animUp = ObjectAnimator.ofFloat(ball2, "y",
AnimatorEvents.java 22 import android.animation.ObjectAnimator;
120 ObjectAnimator yAnim = ObjectAnimator.ofFloat(ball, "y",
128 ObjectAnimator xAnim = ObjectAnimator.ofFloat(ball, "x",
135 ObjectAnimator alphaAnim = ObjectAnimator.ofFloat(ball, "alpha", 1f, .5f).
LayoutAnimations.java 22 import android.animation.ObjectAnimator;
162 customChangingAppearingAnim = ObjectAnimator.ofPropertyValuesHolder(
167 View view = (View) ((ObjectAnimator) anim).getTarget();
179 customChangingDisappearingAnim = ObjectAnimator.ofPropertyValuesHolder(
184 View view = (View) ((ObjectAnimator) anim).getTarget();
190 customAppearingAnim = ObjectAnimator.ofFloat(null, "rotationY", 90f, 0f).
194 View view = (View) ((ObjectAnimator) anim).getTarget();
200 customDisappearingAnim = ObjectAnimator.ofFloat(null, "rotationX", 0f, 90f).
204 View view = (View) ((ObjectAnimator) anim).getTarget();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShadowCardDrag.java 19 import android.animation.ObjectAnimator;
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/training/AnimationsDemo/src/com/example/android/animationsdemo/
ZoomActivity.java 22 import android.animation.ObjectAnimator;
169 .play(ObjectAnimator.ofFloat(expandedImageView, View.X, startBounds.left,
171 .with(ObjectAnimator.ofFloat(expandedImageView, View.Y, startBounds.top,
173 .with(ObjectAnimator.ofFloat(expandedImageView, View.SCALE_X, startScale, 1f))
174 .with(ObjectAnimator.ofFloat(expandedImageView, View.SCALE_Y, startScale, 1f));
205 .play(ObjectAnimator.ofFloat(expandedImageView, View.X, startBounds.left))
206 .with(ObjectAnimator.ofFloat(expandedImageView, View.Y, startBounds.top))
207 .with(ObjectAnimator
209 .with(ObjectAnimator
  /frameworks/base/core/java/android/transition/
Crossfade.java 22 import android.animation.ObjectAnimator;
197 ObjectAnimator anim;
200 anim = ObjectAnimator.ofInt(startDrawable, "alpha", 255, 0, 0);
202 anim = ObjectAnimator.ofInt(startDrawable, "alpha", 0);
211 ObjectAnimator anim1 = null;
214 anim1 = ObjectAnimator.ofFloat(view, View.ALPHA, 0, 0, 1);
216 anim1 = ObjectAnimator.ofFloat(view, View.ALPHA, 0, 1);
243 Animator anim2 = ObjectAnimator.ofObject(startDrawable, "bounds",
249 Animator anim3 = ObjectAnimator.ofObject(endDrawable, "bounds",
Rotate.java 20 import android.animation.ObjectAnimator;
55 return ObjectAnimator.ofFloat(view, View.ROTATION,
  /frameworks/base/core/java/com/android/internal/widget/
AbsActionBarView.java 27 import android.animation.ObjectAnimator;
150 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 1);
155 ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 1);
165 ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 0);
170 ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 0);
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 23 import android.animation.ObjectAnimator;
58 final ObjectAnimator fadeOutAnimator =
59 ObjectAnimator.ofFloat(victim, View.ALPHA, 1.0f, 0.0f);
107 final ObjectAnimator fadeInAnimator = ObjectAnimator.ofFloat(
137 final ObjectAnimator fadeInAnimator = ObjectAnimator.ofFloat(
206 final ObjectAnimator translateAnimator =
207 ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, fromY, toY);
  /packages/apps/Launcher2/src/com/android/launcher2/
SearchDropTargetBar.java 21 import android.animation.ObjectAnimator;
41 private ObjectAnimator mDropTargetBarAnim;
42 private ObjectAnimator mQSBSearchBarAnim;
82 private void setupAnimation(ObjectAnimator anim, final View v) {
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);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
ContentWrapperView.java 8 import android.animation.ObjectAnimator;
203 ObjectAnimator hideAnimator;
204 hideAnimator = ObjectAnimator.ofFloat(mViewToHide, "alpha", 1.0f, 0.0f);
207 ObjectAnimator showAnimator;
208 showAnimator = ObjectAnimator.ofFloat(mViewToShow, "alpha", 0.0f, 1.0f);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ScaledTextActivity.java 19 import android.animation.ObjectAnimator;
38 ObjectAnimator animation = ObjectAnimator.ofFloat(view, "textScale", 1.0f, 10.0f);
40 animation.setRepeatCount(ObjectAnimator.INFINITE);
41 animation.setRepeatMode(ObjectAnimator.REVERSE);
  /packages/apps/InCallUI/src/com/android/incallui/
InCallAnimationUtils.java 21 import android.animation.ObjectAnimator;
54 private final ObjectAnimator mAnimator;
58 mAnimator = ObjectAnimator.ofInt(this, "crossFadeAlpha", 0xff, 0);
64 * This will be used from ObjectAnimator.
74 public ObjectAnimator getAnimator() {
128 ObjectAnimator animator = crossFadeDrawable.getAnimator();
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertionListView.java 22 import android.animation.ObjectAnimator;
145 ObjectAnimator textAlphaAnimator = ObjectAnimator.ofFloat(textView,
169 ObjectAnimator imgViewTranslation = ObjectAnimator.ofFloat(copyImgView,
176 ObjectAnimator imgViewScaleAnimator = ObjectAnimator
203 ObjectAnimator animation = ObjectAnimator.ofFloat(child,
213 ObjectAnimator animation = ObjectAnimator.ofFloat(child
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationTest.java 27 import android.animation.ObjectAnimator;
116 ObjectAnimator appearingAnimator = (ObjectAnimator) ObjectAnimator.ofPropertyValuesHolder(
134 ObjectAnimator appearingAnimator = (ObjectAnimator) ObjectAnimator.ofPropertyValuesHolder(
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
ToonGame.java 22 import android.animation.ObjectAnimator;
187 ObjectAnimator downAnim = ObjectAnimator.ofPropertyValuesHolder(view, pvhTY, pvhSX, pvhSY);
193 ObjectAnimator upAnim = ObjectAnimator.ofPropertyValuesHolder(view, pvhTY, pvhSX, pvhSY);
198 ObjectAnimator stretchAnim = ObjectAnimator.ofPropertyValuesHolder(view, pvhSX, pvhSY);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
LeaveBehindItem.java 21 import android.animation.ObjectAnimator;
60 private ObjectAnimator mFadeIn;
169 final ObjectAnimator height = ObjectAnimator.ofInt(this, "animatedHeight", mHeight, 0);
203 * @return The {@link ObjectAnimator}
205 public static ObjectAnimator startFadeInTextAnimation(final View view, final int delay) {
210 final ObjectAnimator fadeIn = ObjectAnimator.ofFloat(view, "alpha", start, end);
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceWearableConfigActivity.java 20 import android.animation.ObjectAnimator;
215 private final ObjectAnimator mExpandCircleAnimator;
216 private final ObjectAnimator mExpandLabelAnimator;
219 private final ObjectAnimator mShrinkCircleAnimator;
220 private final ObjectAnimator mShrinkLabelAnimator;
233 mShrinkCircleAnimator = ObjectAnimator.ofFloat(mColor, "circleRadius",
235 mShrinkLabelAnimator = ObjectAnimator.ofFloat(mLabel, "alpha",
240 mExpandCircleAnimator = ObjectAnimator.ofFloat(mColor, "circleRadius",
242 mExpandLabelAnimator = ObjectAnimator.ofFloat(mLabel, "alpha",
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceWearableConfigActivity.java 20 import android.animation.ObjectAnimator;
215 private final ObjectAnimator mExpandCircleAnimator;
216 private final ObjectAnimator mExpandLabelAnimator;
219 private final ObjectAnimator mShrinkCircleAnimator;
220 private final ObjectAnimator mShrinkLabelAnimator;
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/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DigitalWatchFaceWearableConfigActivity.java 20 import android.animation.ObjectAnimator;
215 private final ObjectAnimator mExpandCircleAnimator;
216 private final ObjectAnimator mExpandLabelAnimator;
219 private final ObjectAnimator mShrinkCircleAnimator;
220 private final ObjectAnimator mShrinkLabelAnimator;
233 mShrinkCircleAnimator = ObjectAnimator.ofFloat(mColor, "circleRadius",
235 mShrinkLabelAnimator = ObjectAnimator.ofFloat(mLabel, "alpha",
240 mExpandCircleAnimator = ObjectAnimator.ofFloat(mColor, "circleRadius",
242 mExpandLabelAnimator = ObjectAnimator.ofFloat(mLabel, "alpha",
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleBackground.java 21 import android.animation.ObjectAnimator;
76 private ObjectAnimator mAnimOuterOpacity;
212 final ObjectAnimator opacity = ObjectAnimator.ofFloat(this, "outerOpacity", 0, 1);
349 final ObjectAnimator outerOpacityAnim;
352 outerOpacityAnim = ObjectAnimator.ofFloat(this,
364 final ObjectAnimator outerFadeOutAnim = ObjectAnimator.ofFloat(
385 outerOpacityAnim = ObjectAnimator.ofFloat(this, "outerOpacity", 0);
  /development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
CurvedMotion.java 19 import android.animation.ObjectAnimator;
80 final ObjectAnimator anim = ObjectAnimator.ofObject(
116 * setter will be called by the ObjectAnimator given the 'buttonLoc'

Completed in 1812 milliseconds

1 23 4 5 6 7 8 91011