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

1 2 34 5 6 7 8 91011

  /development/samples/devbytes/animation/ListViewAnimations/src/com/example/android/listviewanimations/
ListViewAnimations.java 25 import android.animation.ObjectAnimator;
80 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.ALPHA, 0);
  /frameworks/base/core/java/android/transition/
Fade.java 23 import android.animation.ObjectAnimator;
116 final ObjectAnimator anim = ObjectAnimator.ofFloat(view, "transitionAlpha", endAlpha);
Recolor.java 20 import android.animation.ObjectAnimator;
85 return ObjectAnimator.ofArgb(endBackground, "color", startColor.getColor(),
96 return ObjectAnimator.ofArgb(textView, "textColor", start, end);
ChangeImageTransform.java 19 import android.animation.ObjectAnimator;
174 ObjectAnimator animator;
190 private ObjectAnimator createNullAnimator(ImageView imageView) {
191 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY,
195 private ObjectAnimator createMatrixAnimator(final ImageView imageView, Matrix startMatrix,
197 return ObjectAnimator.ofObject(imageView, ANIMATED_TRANSFORM_PROPERTY,
ChangeBounds.java 26 import android.animation.ObjectAnimator;
321 anim = ObjectAnimator.ofObject(view, POSITION_PROPERTY, null,
327 ObjectAnimator topLeftAnimator = ObjectAnimator
332 ObjectAnimator bottomRightAnimator = ObjectAnimator.ofObject(viewBounds,
346 anim = ObjectAnimator.ofObject(view, TOP_LEFT_ONLY_PROPERTY, null,
351 anim = ObjectAnimator.ofObject(view, BOTTOM_RIGHT_ONLY_PROPERTY, null,
361 ObjectAnimator positionAnimator = null;
365 positionAnimator = ObjectAnimator.ofObject(view, POSITION_PROPERTY, null
    [all...]
TranslationAnimationCreator.java 22 import android.animation.ObjectAnimator;
71 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.TRANSLATION_X, View.TRANSLATION_Y,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarTransitions.java 21 import android.animation.ObjectAnimator;
55 public ObjectAnimator animateTransitionTo(View v, float toAlpha) {
56 return ObjectAnimator.ofFloat(v, "alpha", v.getAlpha(), toAlpha);
  /developers/build/prebuilts/gradle/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 19 import android.animation.ObjectAnimator;
39 * It shows how an {@link android.animation.ObjectAnimator} is used to animate two properties of a
178 // The following Path definitions are used by the ObjectAnimator to scale the view.
194 * The view is animated using an {@link android.animation.ObjectAnimator} on the
202 * @return The ObjectAnimator used for this animation
203 * @see android.animation.ObjectAnimator#ofFloat(Object, String, String, android.graphics.Path)
205 public ObjectAnimator startAnimation(Interpolator interpolator, long duration, Path path) {
206 // This ObjectAnimator uses the path to change the x and y scale of the mView object.
207 ObjectAnimator animator = ObjectAnimator.ofFloat(mView, View.SCALE_X, View.SCALE_Y, path)
    [all...]
  /developers/samples/android/ui/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 19 import android.animation.ObjectAnimator;
39 * It shows how an {@link android.animation.ObjectAnimator} is used to animate two properties of a
178 // The following Path definitions are used by the ObjectAnimator to scale the view.
194 * The view is animated using an {@link android.animation.ObjectAnimator} on the
202 * @return The ObjectAnimator used for this animation
203 * @see android.animation.ObjectAnimator#ofFloat(Object, String, String, android.graphics.Path)
205 public ObjectAnimator startAnimation(Interpolator interpolator, long duration, Path path) {
206 // This ObjectAnimator uses the path to change the x and y scale of the mView object.
207 ObjectAnimator animator = ObjectAnimator.ofFloat(mView, View.SCALE_X, View.SCALE_Y, path)
    [all...]
  /development/samples/browseable/Interpolator/src/com.example.android.interpolator/
InterpolatorFragment.java 19 import android.animation.ObjectAnimator;
39 * It shows how an {@link android.animation.ObjectAnimator} is used to animate two properties of a
178 // The following Path definitions are used by the ObjectAnimator to scale the view.
194 * The view is animated using an {@link android.animation.ObjectAnimator} on the
202 * @return The ObjectAnimator used for this animation
203 * @see android.animation.ObjectAnimator#ofFloat(Object, String, String, android.graphics.Path)
205 public ObjectAnimator startAnimation(Interpolator interpolator, long duration, Path path) {
206 // This ObjectAnimator uses the path to change the x and y scale of the mView object.
207 ObjectAnimator animator = ObjectAnimator.ofFloat(mView, View.SCALE_X, View.SCALE_Y, path)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewScroller.java 21 import android.animation.ObjectAnimator;
41 ObjectAnimator mScrollAnimator;
131 ObjectAnimator animateBoundScroll() {
152 mScrollAnimator = ObjectAnimator.ofFloat(this, "stackScroll", curScroll, newScroll);
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimatorInflaterTest.java 22 import android.animation.ObjectAnimator;
97 assertTrue(subAnim instanceof ObjectAnimator);
99 final ObjectAnimator child1 = (ObjectAnimator) set.getChildAnimations().get(0);
100 final ObjectAnimator child2 = (ObjectAnimator) set.getChildAnimations().get(1);
105 for (ObjectAnimator animator : new ObjectAnimator[]{child1, child2}) {
  /developers/build/prebuilts/gradle/Interpolator/Application/tests/src/com/example/android/interpolatorplayground/tests/
SampleTests.java 22 import android.animation.ObjectAnimator;
106 ObjectAnimator animator = mTestFragment.startAnimation(i, 1000L, mTestFragment.getPathIn());
  /developers/samples/android/ui/Interpolator/Application/tests/src/com/example/android/interpolatorplayground/tests/
SampleTests.java 22 import android.animation.ObjectAnimator;
106 ObjectAnimator animator = mTestFragment.startAnimation(i, 1000L, mTestFragment.getPathIn());
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorTest.java 19 import android.animation.ObjectAnimator;
112 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
114 ((ObjectAnimator)animator).setRepeatCount(ValueAnimator.INFINITE);
116 ((ObjectAnimator)animator).setRepeatMode(ValueAnimator.REVERSE);
187 final ObjectAnimator animator = ObjectAnimator.ofFloat(object, "y", 0, 100);
  /frameworks/base/core/java/android/widget/
AdapterViewAnimator.java 20 import android.animation.ObjectAnimator;
148 ObjectAnimator mInAnimation;
149 ObjectAnimator mOutAnimation;
279 ObjectAnimator getDefaultInAnimation() {
280 ObjectAnimator anim = ObjectAnimator.ofFloat(null, "alpha", 0.0f, 1.0f);
285 ObjectAnimator getDefaultOutAnimation() {
286 ObjectAnimator anim = ObjectAnimator.ofFloat(null, "alpha", 1.0f, 0.0f);
865 * @see #setInAnimation(android.animation.ObjectAnimator)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
NavTabScroller.java 23 import android.animation.ObjectAnimator;
59 private ObjectAnimator mGapAnimator;
310 ObjectAnimator trans = ObjectAnimator.ofFloat(v,
312 ObjectAnimator alpha = ObjectAnimator.ofFloat(v, ALPHA, getAlpha(v,start),
318 ObjectAnimator trans2 = null;
319 ObjectAnimator scroll1 = null;
322 scroll1 = ObjectAnimator.ofInt(this, "scrollX", getScrollX(), getScrollX() + scroll);
324 scroll1 = ObjectAnimator.ofInt(this, "scrollY", getScrollY(), getScrollY() + scroll)
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialSelectorView.java 20 import android.animation.ObjectAnimator;
324 public ObjectAnimator getDisappearAnimator() {
344 ObjectAnimator disappearAnimator = ObjectAnimator.ofPropertyValuesHolder(
351 public ObjectAnimator getReappearAnimator() {
383 ObjectAnimator reappearAnimator = ObjectAnimator.ofPropertyValuesHolder(
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationLoading.java 23 import android.animation.ObjectAnimator;
87 ObjectAnimator anim = (ObjectAnimator) AnimatorInflater.
105 ObjectAnimator colorizer = (ObjectAnimator) AnimatorInflater.
AnimationSeeking.java 27 import android.animation.ObjectAnimator;
109 bounceAnim = ObjectAnimator.ofFloat(ball, "y",
163 balls.remove(((ObjectAnimator)animation).getTarget());
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
Tweener.java 27 import android.animation.ObjectAnimator;
37 ObjectAnimator animator;
40 public Tweener(ObjectAnimator anim) {
100 ObjectAnimator anim = null;
102 anim = ObjectAnimator.ofPropertyValuesHolder(object,
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
LinesActivity.java 19 import android.animation.ObjectAnimator;
33 private ObjectAnimator mAnimator;
42 mAnimator = ObjectAnimator.ofFloat(view, "offset", 0.0f, 15.0f);
44 mAnimator.setRepeatCount(ObjectAnimator.INFINITE);
45 mAnimator.setRepeatMode(ObjectAnimator.REVERSE);
ViewPropertyAlphaActivity.java 19 import android.animation.ObjectAnimator;
106 ObjectAnimator anim = ObjectAnimator.ofFloat(target, View.ALPHA, 0);
  /packages/apps/Camera2/src/com/android/camera/app/
FilmstripBottomPanel.java 21 import android.animation.ObjectAnimator;
275 ObjectAnimator animator = ObjectAnimator
292 ObjectAnimator animator = ObjectAnimator
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
Tweener.java 22 import android.animation.ObjectAnimator;
37 ObjectAnimator animator;
40 public Tweener(ObjectAnimator anim) {
101 ObjectAnimator anim = null;
103 anim = ObjectAnimator.ofPropertyValuesHolder(object,

Completed in 1544 milliseconds

1 2 34 5 6 7 8 91011