/packages/inputmethods/LatinIME/java/res/anim/ |
key_preview_show_up_lxx.xml | 22 <objectAnimator 27 <objectAnimator
|
/packages/services/Car/car-support-lib/res/anim/ |
car_fab_state_list_animator.xml | 19 <objectAnimator android:propertyName="translationZ" 28 <objectAnimator android:propertyName="translationZ"
|
/prebuilts/sdk/current/support/v17/leanback/res/animator/ |
lb_onboarding_description_enter.xml | 19 <objectAnimator 25 <objectAnimator
|
lb_onboarding_start_button_fade_in.xml | 19 <objectAnimator 25 <objectAnimator
|
lb_onboarding_start_button_fade_out.xml | 19 <objectAnimator 25 <objectAnimator
|
lb_onboarding_title_enter.xml | 19 <objectAnimator 25 <objectAnimator
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
ListFlipper.java | 23 import android.animation.ObjectAnimator; 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", 82 ObjectAnimator anim2 = anim1.clone(); 87 ObjectAnimator animDown = ObjectAnimator.ofFloat(ball2, "y", 90 ObjectAnimator animUp = ObjectAnimator.ofFloat(ball2, "y",
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
DividerHandleView.java | 22 import android.animation.ObjectAnimator; 114 ObjectAnimator widthAnimator = ObjectAnimator.ofInt(this, WIDTH_PROPERTY, 116 ObjectAnimator heightAnimator = ObjectAnimator.ofInt(this, HEIGHT_PROPERTY,
|
/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);
|
MovingSurfaceViewActivity.java | 19 import android.animation.ObjectAnimator; 34 ObjectAnimator mAnimator; 93 mAnimator = ObjectAnimator.ofFloat(mSurfaceView, "myTranslationY", 95 mAnimator.setRepeatMode(ObjectAnimator.REVERSE); 96 mAnimator.setRepeatCount(ObjectAnimator.INFINITE);
|
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);
|
/frameworks/base/tests/UiBench/src/com/android/test/uibench/ |
BitmapUploadActivity.java | 18 import android.animation.ObjectAnimator; 84 ObjectAnimator colorValueAnimator = ObjectAnimator.ofInt(uploadView, "colorValue", 0, 255); 91 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(uploadRoot, "translationY", 0, 100);
|
/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...] |
/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...] |
/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...] |
/frameworks/base/graphics/java/android/graphics/drawable/ |
RippleForeground.java | 22 import android.animation.ObjectAnimator; 173 final ObjectAnimator tweenRadius = ObjectAnimator.ofFloat(this, TWEEN_RADIUS, 1); 179 final ObjectAnimator tweenOrigin = ObjectAnimator.ofFloat(this, TWEEN_ORIGIN, 1); 185 final ObjectAnimator opacity = ObjectAnimator.ofFloat(this, OPACITY, 1); 244 final ObjectAnimator tweenRadius = ObjectAnimator.ofFloat(this, TWEEN_RADIUS, 1); 249 final ObjectAnimator tweenOrigin = ObjectAnimator.ofFloat(this, TWEEN_ORIGIN, 1) [all...] |
RippleBackground.java | 21 import android.animation.ObjectAnimator; 94 final ObjectAnimator opacity = ObjectAnimator.ofFloat(this, OPACITY, 1); 107 final ObjectAnimator exit = ObjectAnimator.ofFloat(this, RippleBackground.OPACITY, 0); 118 final ObjectAnimator enter = ObjectAnimator.ofFloat(this, RippleBackground.OPACITY, 1);
|
/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(
|
/packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/ |
SetupAnimationHelper.java | 22 import android.animation.ObjectAnimator; 192 public static ObjectAnimator createFrameAnimator(ImageView imageView, int[] frames) { 201 public static ObjectAnimator createFrameAnimatorWithDelay(ImageView imageView, int[] frames, 203 ObjectAnimator animator = ObjectAnimator.ofInt(imageView, "imageResource", frames); 227 ObjectAnimator animator = 228 ObjectAnimator.ofFloat(view, View.ALPHA, 1.0f, 0.0f).setDuration(duration);
|
/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/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);
|