Searched defs:animation (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Settings/src/com/android/settings/
H A DChooseLockPatternExample.java87 protected void startAnimation(final AnimationDrawable animation) { argument
88 if (animation != null && !animation.isRunning()) {
89 animation.run();
93 protected void stopAnimation(final AnimationDrawable animation) { argument
94 if (animation != null && animation.isRunning()) animation.stop();
/packages/apps/Calendar/src/com/android/calendar/
H A DMonthActivity.java39 import android.view.animation.Animation;
40 import android.view.animation.AnimationUtils;
41 import android.view.animation.Animation.AnimationListener;
192 public void onAnimationStart(Animation animation) { argument
195 // Notifies the MonthView when an animation has finished.
196 public void onAnimationEnd(Animation animation) { argument
201 public void onAnimationRepeat(Animation animation) { argument
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DCandidatesContainer.java27 import android.view.animation.AlphaAnimation;
28 import android.view.animation.Animation;
29 import android.view.animation.AnimationSet;
30 import android.view.animation.TranslateAnimation;
31 import android.view.animation.Animation.AnimationListener;
43 * view, animation is used to dismiss the current candidate view and show a new
89 * The animation view used to show candidates. It contains two views.
91 * another page, animation effect will be performed.
114 * above. If the page navigation is triggered by DOWN key, this animation is
121 * below. If the page navigation is triggered by UP key, this animation i
462 onAnimationEnd(Animation animation) argument
469 onAnimationRepeat(Animation animation) argument
472 onAnimationStart(Animation animation) argument
[all...]
/packages/apps/Camera/src/com/android/camera/ui/
H A DGLRootView.java35 import android.view.animation.Animation;
36 import android.view.animation.Transformation;
111 void registerLaunchedAnimation(Animation animation) { argument
112 // Register the newly launched animation so that we can set the start
114 // rendering, so we set the animation start time as the time we
116 mAnimations.add(animation);
451 for (Animation animation : mAnimations) {
452 animation.setStartTime(now);
H A DGLView.java23 import android.view.animation.Animation;
24 import android.view.animation.Transformation;
65 public void startAnimation(Animation animation) { argument
69 mAnimation = animation;
70 animation.initialize(getWidth(),
73 root.registerLaunchedAnimation(animation);
/packages/apps/Email/src/com/android/email/activity/
H A DMessageList.java64 import android.view.animation.Animation;
65 import android.view.animation.AnimationUtils;
66 import android.view.animation.Animation.AnimationListener;
425 public void onAnimationEnd(Animation animation) { argument
429 public void onAnimationRepeat(Animation animation) { argument
432 public void onAnimationStart(Animation animation) { argument
886 Animation animation = AnimationUtils.loadAnimation(this, R.anim.footer_appear);
887 animation.setAnimationListener(this);
888 mMultiSelectPanel.startAnimation(animation);

Completed in 39 milliseconds