HomeSort by relevance Sort by last modified time
    Searched refs:translateAnimation (Results 1 - 5 of 5) sorted by null

  /cts/tests/tests/view/src/android/view/animation/cts/
TranslateAnimationTest.java 29 import android.view.animation.TranslateAnimation;
63 new TranslateAnimation(mActivity, null);
70 new TranslateAnimation(mActivity, attr);
72 // Test {@link TranslateAnimation#TranslateAnimation(float, float, float, float)}
73 new TranslateAnimation(0.6f, 0.6f, 0.6f, 0.6f);
75 new TranslateAnimation(-0.6f, -0.6f, -0.6f, -0.6f);
77 // Test {@link TranslateAnimation#TranslateAnimation(int, float, int, float, int, float,
79 new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0.6f, Animation.RELATIVE_TO_SELF, 0.6f
    [all...]
  /development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/
ViewAnimations.java 28 import android.view.animation.TranslateAnimation;
61 final TranslateAnimation translateAnimation =
62 new TranslateAnimation(Animation.ABSOLUTE, 0,
65 translateAnimation.setDuration(1000);
79 setAnimation.addAnimation(translateAnimation);
84 setupAnimation(translateButton, translateAnimation, R.anim.translate_anim);
  /development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java 62 ObjectAnimator translateAnimation =
64 translateAnimation.setRepeatCount(1);
65 translateAnimation.setRepeatMode(ValueAnimator.REVERSE);
84 setAnimation.play(translateAnimation).after(alphaAnimation).before(rotateAnimation);
88 setupAnimation(translateButton, translateAnimation, R.animator.move);
  /packages/apps/Contacts/src/com/android/contacts/widget/
MultiShrinkScroller.java 638 ObjectAnimator translateAnimation = ObjectAnimator.ofInt(this, "scroll",
640 translateAnimation.setRepeatCount(0);
641 translateAnimation.setInterpolator(interpolator);
642 translateAnimation.setDuration(EXIT_FLING_ANIMATION_DURATION_MS);
643 translateAnimation.addListener(mSnapToBottomListener);
644 translateAnimation.start();
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewController.java 35 import android.view.animation.TranslateAnimation;
    [all...]

Completed in 333 milliseconds