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

  /development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/
ViewAnimations.java 22 import android.view.animation.AlphaAnimation;
57 final AlphaAnimation alphaAnimation = new AlphaAnimation(1, 0);
58 alphaAnimation.setDuration(1000);
78 setAnimation.addAnimation(alphaAnimation);
83 setupAnimation(alphaButton, alphaAnimation, R.anim.alpha_anim);
  /development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java 56 ObjectAnimator alphaAnimation = ObjectAnimator.ofFloat(alphaButton,
58 alphaAnimation.setRepeatCount(1);
59 alphaAnimation.setRepeatMode(ValueAnimator.REVERSE);
84 setAnimation.play(translateAnimation).after(alphaAnimation).before(rotateAnimation);
87 setupAnimation(alphaButton, alphaAnimation, R.animator.fade);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewController.java 30 import android.view.animation.AlphaAnimation;
    [all...]

Completed in 136 milliseconds