Searched refs:animation (Results 1 - 25 of 79) sorted by relevance

1234

/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherAnimatorUpdateListener.java19 import android.animation.ValueAnimator;
20 import android.animation.ValueAnimator.AnimatorUpdateListener;
23 public void onAnimationUpdate(ValueAnimator animation) { argument
24 final float b = (Float) animation.getAnimatedValue();
H A DInterruptibleInOutAnimator.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
24 * A convenience class for two-way animations, e.g. a fadeIn/fadeOut animation.
25 * With a regular ValueAnimator, if you call reverse to show the 'out' animation, you'll get
26 * a frame-by-frame mirror of the 'in' animation -- i.e., the interpolated values will
27 * be exactly reversed. Using this class, both the 'in' and the 'out' animation use the
55 public void onAnimationEnd(Animator animation) {
70 // TODO: We don't really need to do the animation if startValue == toValue, but
71 // somehow that doesn't seem to work, possibly a quirk of the animation framewor
[all...]
H A DSearchDropTargetBar.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
28 import android.view.animation.AccelerateInterpolator;
29 import android.view.animation.DecelerateInterpolator;
106 public void onAnimationStart(Animator animation) {
121 public void onAnimationEnd(Animator animation) {
130 public void onAnimationStart(Animator animation) {
138 public void onAnimationEnd(Animator animation) {
[all...]
H A DAppsCustomizeTabHost.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
67 * reflects the new content (but doesn't do the animation and logic associated with changing
212 // If we can't get the visible page ranges, then just skip the animation
255 public void onAnimationEnd(Animator animation) {
260 public void onAnimationCancel(Animator animation) {
268 public void onAnimationEnd(Animator animation) {
338 // force building the layer, so you don't get a blip early in an animation
355 onLauncherTransitionStart(Launcher l, Animator animation, boolean toWorkspace) argument
389 onLauncherTransitionEnd(Launcher l, Animator animation, boolean toWorkspace) argument
[all...]
H A DDragLayer.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
22 import android.animation.TimeInterpolator;
23 import android.animation.ValueAnimator;
24 import android.animation.ValueAnimator.AnimatorUpdateListener;
37 import android.view.animation.DecelerateInterpolator;
38 import android.view.animation.Interpolator;
61 // Variables relating to animation of views after drop
478 public void onAnimationEnd(android.animation
[all...]
H A DFolderIcon.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
22 import android.animation.ValueAnimator.AnimatorUpdateListener;
35 import android.view.animation.AccelerateInterpolator;
36 import android.view.animation.DecelerateInterpolator;
192 public void onAnimationUpdate(ValueAnimator animation) {
193 final float percent = (Float) animation.getAnimatedValue();
203 public void onAnimationStart(Animator animation) {
219 public void onAnimationUpdate(ValueAnimator animation) {
[all...]
H A DDragView.java20 import android.animation.ValueAnimator;
21 import android.animation.ValueAnimator.AnimatorUpdateListener;
30 import android.view.animation.DecelerateInterpolator;
85 public void onAnimationUpdate(ValueAnimator animation) {
86 final float value = (Float) animation.getAnimatedValue();
95 animation.cancel();
/packages/apps/Email/src/com/android/email/activity/
H A DBannerController.java19 import android.animation.Animator;
20 import android.animation.ObjectAnimator;
21 import android.animation.PropertyValuesHolder;
22 import android.animation.TimeInterpolator;
25 import android.view.animation.DecelerateInterpolator;
H A DThreePaneLayout.java19 import android.animation.Animator;
20 import android.animation.ObjectAnimator;
21 import android.animation.PropertyValuesHolder;
22 import android.animation.TimeInterpolator;
31 import android.view.animation.DecelerateInterpolator;
45 * TODO onVisiblePanesChanged() should be called *AFTER* the animation, not before.
488 * Helper method to start animation.
497 Log.w(Logging.LOG_TAG, "Anim: Cancelling last animation: " + mLastAnimator);
519 * Update the visibility of each pane before/after an animation.
551 * Show the about-to-become-visible panes before an animation
554 onAnimationStart(Animator animation) argument
575 onAnimationRepeat(Animator animation) argument
579 onAnimationCancel(Animator animation) argument
586 onAnimationEnd(Animator animation) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLRoot.java28 public void registerLaunchedAnimation(CanvasAnimation animation); argument
/packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
H A DGLRootMock.java26 public void registerLaunchedAnimation(CanvasAnimation animation) {} argument
H A DGLRootStub.java23 public void registerLaunchedAnimation(CanvasAnimation animation) {} argument
/packages/apps/Camera/src/com/android/camera/ui/
H A DIndicatorControlBarContainer.java27 import android.view.animation.Animation;
28 import android.view.animation.Animation.AnimationListener;
29 import android.view.animation.AnimationUtils;
94 public void onAnimationEnd(Animation animation) {
95 if (animation == mSecondLevelFadeOut) {
97 } else if (animation == mFadeOut) {
102 public void onAnimationRepeat(Animation animation) {
105 public void onAnimationStart(Animation animation) {
/packages/apps/Calculator/src/com/android/calculator2/
H A DPanelSwitcher.java24 import android.view.animation.AccelerateDecelerateInterpolator;
25 import android.view.animation.Animation;
26 import android.view.animation.Animation.AnimationListener;
27 import android.view.animation.TranslateAnimation;
167 public void onAnimationRepeat(Animation animation) { argument
171 public void onAnimationStart(Animation animation) { argument
175 public void onAnimationEnd(Animation animation) { argument
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DFloatingChildLayout.java21 import android.animation.Animator;
22 import android.animation.Animator.AnimatorListener;
31 import android.view.animation.AnimationUtils;
152 /** Creates the open/close animation */
169 public void onAnimationStart(Animator animation) {}
172 public void onAnimationRepeat(Animator animation) {}
175 public void onAnimationCancel(Animator animation) {}
178 public void onAnimationEnd(Animator animation) {
/packages/apps/Nfc/src/com/android/nfc/
H A DSendUi.java19 import android.animation.Animator;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
22 import android.animation.PropertyValuesHolder;
44 import android.view.animation.AccelerateDecelerateInterpolator;
45 import android.view.animation.AccelerateInterpolator;
46 import android.view.animation.DecelerateInterpolator;
206 /** Show pre-send animation */
260 /** Show starting send animation */
268 /** Show post-send animation */
442 onAnimationStart(Animator animation) argument
445 onAnimationEnd(Animator animation) argument
458 onAnimationCancel(Animator animation) argument
461 onAnimationRepeat(Animator animation) argument
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DTitleBar.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.ObjectAnimator;
29 import android.view.animation.Animation;
30 import android.view.animation.Animation.AnimationListener;
31 import android.view.animation.AnimationUtils;
32 import android.view.animation.DecelerateInterpolator;
193 public void onAnimationStart(Animator animation) {
198 public void onAnimationRepeat(Animator animation) {
202 public void onAnimationEnd(Animator animation) {
[all...]
H A DBrowserSnapshotPage.java18 import android.animation.Animator;
19 import android.animation.Animator.AnimatorListener;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
227 public void onAnimationStart(Animator animation) {
231 public void onAnimationRepeat(Animator animation) {
235 public void onAnimationEnd(Animator animation) {
241 public void onAnimationCancel(Animator animation) {
H A DTabBar.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
453 public void onAnimationCancel(Animator animation) {
457 public void onAnimationEnd(Animator animation) {
464 public void onAnimationRepeat(Animator animation) {
468 public void onAnimationStart(Animator animation) {
481 public void onAnimationCancel(Animator animation) {
485 public void onAnimationEnd(Animator animation) {
[all...]
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DTransitionAnimationView.java20 import android.animation.Animator;
21 import android.animation.Animator.AnimatorListener;
22 import android.animation.AnimatorInflater;
93 throw new IllegalArgumentException("Invalid enter animation: " + mEnterAnimationId);
100 throw new IllegalArgumentException("Invalid exit animation: " + mExitAnimationId);
191 public void onAnimationEnd(Animator animation) { argument
196 public void onAnimationCancel(Animator animation) { argument
200 public void onAnimationStart(Animator animation) { argument
204 public void onAnimationRepeat(Animator animation) { argument
/packages/apps/Gallery2/src/com/android/gallery3d/anim/
H A DAnimation.java21 import android.view.animation.Interpolator;
26 // animation. The duration is in milliseconds.
29 // 3. Each time we want to get an animation value, we call
42 // The isActive() method returns true after the animation start() is called and
44 // animation.
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
H A DToolbar.java25 import android.view.animation.Animation;
26 import android.view.animation.AnimationUtils;
/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/
H A DModePicker.java29 import android.view.animation.Animation;
30 import android.view.animation.Animation.AnimationListener;
31 import android.view.animation.AnimationUtils;
124 public void onAnimationEnd(Animation animation) {
130 public void onAnimationRepeat(Animation animation) {
133 public void onAnimationStart(Animation animation) {
/packages/apps/DeskClock/src/com/android/deskclock/
H A DScreensaver.java19 import android.view.animation.AccelerateInterpolator;
20 import android.view.animation.DecelerateInterpolator;
21 import android.animation.TimeInterpolator;
22 import android.animation.ObjectAnimator;
23 import android.animation.Animator;
24 import android.animation.AnimatorSet;

Completed in 1676 milliseconds

1234