Home | History | Annotate | Download | only in photo

Lines Matching refs:scaleAnimation

48 import android.view.animation.ScaleAnimation;
853 Animation scaleAnimation = new ScaleAnimation(scale, scale, 0, 0);
854 scaleAnimation.setDuration(ENTER_ANIMATION_DURATION_MS);
858 animationSet.addAnimation(scaleAnimation);
936 final Animation scaleAnimation = new ScaleAnimation(1f, 1f, scale, scale);
937 scaleAnimation.setDuration(EXIT_ANIMATION_DURATION_MS);
952 scaleAnimation.setAnimationListener(listener);
957 mTemporaryImage.startAnimation(scaleAnimation);
959 mViewPager.startAnimation(scaleAnimation);