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);
  /frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
PhotoViewActivity.java 50 import android.view.animation.TranslateAnimation;
    [all...]
  /frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
PhotoViewActivity.java 49 import android.view.animation.TranslateAnimation;
    [all...]

Completed in 307 milliseconds