Searched refs:mAnimation (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DBrowserSnapshotPage.java213 private AnimatorSet mAnimation; field in class:BrowserSnapshotPage.SnapshotAdapter
218 mAnimation = new AnimatorSet();
219 mAnimation.playTogether(
222 mAnimation.setStartDelay(100);
223 mAnimation.setDuration(400);
224 mAnimation.addListener(new AnimatorListener() {
264 mAnimation.setTarget(view);
266 if (!mAnimation.isRunning()) {
267 mAnimation.start();
H A DNavigationBarTablet.java265 private AnimatorSet mAnimation; field in class:NavigationBarTablet
277 mAnimation = new AnimatorSet();
278 mAnimation.playTogether(anim1, anim2, anim3);
279 mAnimation.addListener(new AnimatorListenerAdapter() {
283 mAnimation = null;
286 mAnimation.setDuration(150);
287 mAnimation.start();
291 if (mAnimation != null) {
292 mAnimation.cancel();
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLView.java67 private CanvasAnimation mAnimation; field in class:GLView
88 mAnimation = animation;
89 if (mAnimation != null) {
90 mAnimation.start();
91 root.registerLaunchedAnimation(mAnimation);
269 && component.mAnimation == null) return;
276 CanvasAnimation anim = component.mAnimation;
282 component.mAnimation = null;
H A DSlotView.java71 private SlotAnimation mAnimation = null; field in class:SlotView
170 mAnimation = new ScatteringAnimation(position);
171 mAnimation.start();
176 mAnimation = new RisingAnimation();
177 mAnimation.start();
270 if (mAnimation != null) {
271 more |= mAnimation.calculate(animTime);
322 if (mAnimation != null && mAnimation.isActive()) {
323 mAnimation
[all...]
/packages/apps/Gallery2/src/com/android/camera/ui/
H A DPieRenderer.java53 private ScaleAnimation mAnimation = new ScaleAnimation(); field in class:PieRenderer
886 mAnimation.cancel();
887 mAnimation.reset();
980 if (mAnimation != null && !mAnimation.hasEnded()) {
981 mAnimation.cancel();
1004 mAnimation.reset();
1005 mAnimation.setDuration(duration);
1006 mAnimation.setScale(fromScale, toScale);
1007 mAnimation
[all...]
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
H A DProgressBar.java208 private AlphaAnimation mAnimation; field in class:ProgressBar
811 mAnimation = null;
818 mAnimation = new AlphaAnimation(0.0f, 1.0f);
819 mAnimation.setRepeatMode(mBehavior);
820 mAnimation.setRepeatCount(Animation.INFINITE);
821 mAnimation.setDuration(mDuration);
822 mAnimation.setInterpolator(mInterpolator);
823 mAnimation.setStartTime(Animation.START_ON_FIRST_FRAME);
832 mAnimation = null;
972 if (mAnimation !
[all...]
/packages/apps/Camera/src/com/android/camera/ui/
H A DPieRenderer.java54 private ScaleAnimation mAnimation = new ScaleAnimation(); field in class:PieRenderer
612 mAnimation.cancel();
613 mAnimation.reset();
720 if (mAnimation != null) {
721 mAnimation.cancel();
744 mAnimation.reset();
745 mAnimation.setDuration(duration);
746 mAnimation.setScale(fromScale, toScale);
747 mAnimation.setAnimationListener(timeout ? mEndAction : null);
748 mOverlay.startAnimation(mAnimation);
[all...]

Completed in 109 milliseconds