Home | History | Annotate | Download | only in camera

Lines Matching refs:Animation

41 import android.view.animation.AlphaAnimation;
42 import android.view.animation.Animation;
43 import android.view.animation.AnimationUtils;
96 // represents which style animation to use
98 private Animation [] mSlideShowInAnimation;
99 private Animation [] mSlideShowOutAnimation;
105 private final Animation mHideNextImageViewAnimation =
107 private final Animation mHidePrevImageViewAnimation =
109 private final Animation mShowNextImageViewAnimation =
111 private final Animation mShowPrevImageViewAnimation =
147 Animation a = mShowPrevImageViewAnimation;
152 Animation a = mHidePrevImageViewAnimation;
159 Animation a = mShowNextImageViewAnimation;
164 Animation a = mHideNextImageViewAnimation;
174 Animation animation = new AlphaAnimation(1, 0);
175 animation.setDuration(500);
176 mActionIconPanel.startAnimation(animation);
181 Animation a = mHideNextImageViewAnimation;
188 Animation a = mHidePrevImageViewAnimation;
222 Animation animation = new AlphaAnimation(0, 1);
223 animation.setDuration(500);
224 mActionIconPanel.startAnimation(animation);
578 mSlideShowInAnimation = new Animation[] {
584 mSlideShowOutAnimation = new Animation[] {
667 private Animation makeInAnimation(int id) {
668 Animation inAnimation = AnimationUtils.loadAnimation(this, id);
672 private Animation makeOutAnimation(int id) {
673 Animation outAnimation = AnimationUtils.loadAnimation(this, id);
737 Animation animation = new AlphaAnimation(0F, 1F);
738 animation.setDuration(500);
739 mActionIconPanel.setAnimation(animation);
828 int animation = 0;
833 animation = n;
835 animation = mAnimationIndex;
838 Animation aIn = mSlideShowInAnimation[animation];
842 Animation aOut = mSlideShowOutAnimation[animation];