/packages/apps/PhoneCommon/src/com/android/phone/common/animation/ |
H A D | AnimationListenerAdapter.java | 17 package com.android.phone.common.animation; 19 import android.view.animation.Animation; 20 import android.view.animation.Animation.AnimationListener; 32 public void onAnimationStart(Animation animation) { argument 39 public void onAnimationEnd(Animation animation) { argument 46 public void onAnimationRepeat(Animation animation) { argument
|
H A D | AnimUtils.java | 17 package com.android.phone.common.animation; 19 import android.animation.Animator; 20 import android.animation.AnimatorListenerAdapter; 21 import android.animation.ValueAnimator; 24 import android.view.animation.Interpolator; 25 import android.view.animation.PathInterpolator; 58 public void onAnimationEnd(Animator animation) { 66 public void onAnimationCancel(Animator animation) { 93 public void onAnimationStart(Animator animation) { 98 public void onAnimationCancel(Animator animation) { [all...] |
/packages/apps/Camera/src/com/android/camera/ui/ |
H A D | Rotatable.java | 20 // Set parameter 'animation' to true to have animation when rotation. 21 public void setOrientation(int orientation, boolean animation); argument
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
H A D | Rotatable.java | 20 // Set parameter 'animation' to true to have animation when rotation. 21 public void setOrientation(int orientation, boolean animation); argument
|
H A D | TouchCircleDrawable.java | 19 import android.animation.Animator; 20 import android.animation.Animator.AnimatorListener; 21 import android.animation.ValueAnimator; 184 * Start the expand animation. 195 public void onAnimationUpdate(ValueAnimator animation) { 196 mColorRadius = (Integer) animation.getAnimatedValue(); 199 mUpdateListener.onAnimationUpdate(animation); 206 public void onAnimationStart(Animator animation) { 210 mAnimatorListener.onAnimationStart(animation); 215 public void onAnimationEnd(Animator animation) { [all...] |
H A D | CaptureAnimationOverlay.java | 19 import android.animation.Animator; 20 import android.animation.AnimatorSet; 21 import android.animation.ValueAnimator; 31 import android.view.animation.Interpolator; 32 import android.view.animation.LinearInterpolator; 70 public void onAnimationUpdate(ValueAnimator animation) { 71 setAlpha((Float) animation.getAnimatedValue()); 77 public void onAnimationStart(Animator animation) { 82 public void onAnimationEnd(Animator animation) { 88 public void onAnimationCancel(Animator animation) { [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
H A D | LauncherAnimatorUpdateListener.java | 19 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 D | FirstFrameAnimatorHelper.java | 19 import android.animation.Animator; 20 import android.animation.AnimatorListenerAdapter; 21 import android.animation.ValueAnimator; 28 * This is a helper class that listens to updates from the corresponding animation. 29 * For the first two frames, it adjusts the current play time of the animation to 30 * prevent jank at the beginning of the animation 58 public void onAnimationStart(Animator animation) { argument 59 final ValueAnimator va = (ValueAnimator) animation; 87 public void onAnimationUpdate(final ValueAnimator animation) { argument 94 boolean isFinalFrame = Float.compare(1f, animation 137 print(ValueAnimator animation) argument [all...] |
H A D | LauncherAnimUtils.java | 19 import android.animation.Animator; 20 import android.animation.AnimatorSet; 21 import android.animation.ObjectAnimator; 22 import android.animation.PropertyValuesHolder; 23 import android.animation.ValueAnimator; 32 public void onAnimationStart(Animator animation) { 35 public void onAnimationRepeat(Animator animation) { 38 public void onAnimationEnd(Animator animation) { 39 sAnimators.remove(animation); 42 public void onAnimationCancel(Animator animation) { [all...] |
H A D | InterruptibleInOutAnimator.java | 19 import android.animation.Animator; 20 import android.animation.AnimatorListenerAdapter; 21 import android.animation.ValueAnimator; 25 * A convenience class for two-way animations, e.g. a fadeIn/fadeOut animation. 26 * With a regular ValueAnimator, if you call reverse to show the 'out' animation, you'll get 27 * a frame-by-frame mirror of the 'in' animation -- i.e., the interpolated values will 28 * be exactly reversed. Using this class, both the 'in' and the 'out' animation use the 56 public void onAnimationEnd(Animator animation) { 71 // TODO: We don't really need to do the animation if startValue == toValue, but 72 // somehow that doesn't seem to work, possibly a quirk of the animation framewor [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
H A D | LauncherAnimatorUpdateListener.java | 19 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 D | FirstFrameAnimatorHelper.java | 19 import android.animation.Animator; 20 import android.animation.AnimatorListenerAdapter; 21 import android.animation.ValueAnimator; 28 * This is a helper class that listens to updates from the corresponding animation. 29 * For the first two frames, it adjusts the current play time of the animation to 30 * prevent jank at the beginning of the animation 58 public void onAnimationStart(Animator animation) { argument 59 final ValueAnimator va = (ValueAnimator) animation; 87 public void onAnimationUpdate(final ValueAnimator animation) { argument 94 final long currentPlayTime = animation 138 print(ValueAnimator animation) argument [all...] |
H A D | LauncherAnimUtils.java | 19 import android.animation.Animator; 20 import android.animation.AnimatorSet; 21 import android.animation.ObjectAnimator; 22 import android.animation.PropertyValuesHolder; 23 import android.animation.ValueAnimator; 34 public void onAnimationStart(Animator animation) { 35 sAnimators.put(animation, null); 38 public void onAnimationRepeat(Animator animation) { 41 public void onAnimationEnd(Animator animation) { 42 sAnimators.remove(animation); [all...] |
H A D | InterruptibleInOutAnimator.java | 19 import android.animation.Animator; 20 import android.animation.AnimatorListenerAdapter; 21 import android.animation.ValueAnimator; 25 * A convenience class for two-way animations, e.g. a fadeIn/fadeOut animation. 26 * With a regular ValueAnimator, if you call reverse to show the 'out' animation, you'll get 27 * a frame-by-frame mirror of the 'in' animation -- i.e., the interpolated values will 28 * be exactly reversed. Using this class, both the 'in' and the 'out' animation use the 56 public void onAnimationEnd(Animator animation) { 71 // TODO: We don't really need to do the animation if startValue == toValue, but 72 // somehow that doesn't seem to work, possibly a quirk of the animation framewor [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
H A D | HardwareLayerEnabler.java | 3 import android.animation.Animator; 4 import android.animation.AnimatorListenerAdapter; 21 public void onAnimationStart(Animator animation) { argument 26 public void onAnimationEnd(Animator animation) { argument
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
H A D | CaptureAnimation.java | 19 import android.view.animation.AccelerateDecelerateInterpolator; 20 import android.view.animation.AccelerateInterpolator; 21 import android.view.animation.DecelerateInterpolator; 22 import android.view.animation.Interpolator;
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
H A D | TrimControllerOverlay.java | 19 import android.animation.Animator; 20 import android.animation.Animator.AnimatorListener; 21 import android.animation.ObjectAnimator; 55 // Add animation to hide the play button while playing. 61 public void onAnimationStart(Animator animation) { 65 public void onAnimationEnd(Animator animation) { 70 public void onAnimationCancel(Animator animation) { 75 public void onAnimationRepeat(Animator animation) {
|
H A D | MovieControllerOverlay.java | 24 import android.view.animation.Animation; 25 import android.view.animation.Animation.AnimationListener; 26 import android.view.animation.AnimationUtils; 112 public void onAnimationStart(Animation animation) { argument 117 public void onAnimationRepeat(Animation animation) { argument 122 public void onAnimationEnd(Animation animation) { argument
|
/packages/screensavers/WebView/src/com/android/dreams/web/ |
H A D | Screensaver.java | 19 import android.animation.Animator; 20 import android.animation.AnimatorSet; 21 import android.animation.ObjectAnimator; 22 import android.animation.TimeInterpolator; 39 import android.view.animation.AccelerateInterpolator; 40 import android.view.animation.DecelerateInterpolator;
|
/packages/apps/Camera2/src/com/android/camera/widget/ |
H A D | ModeOptions.java | 18 import android.animation.Animator; 19 import android.animation.AnimatorListenerAdapter; 20 import android.animation.AnimatorSet; 21 import android.animation.ValueAnimator; 216 public void onAnimationUpdate(ValueAnimator animation) { 217 mRadius = (Float) animation.getAnimatedValue(); 224 public void onAnimationEnd(Animator animation) { 234 public void onAnimationUpdate(ValueAnimator animation) { 235 mActiveBar.setAlpha((Float) animation.getAnimatedValue()); 240 public void onAnimationEnd(Animator animation) { [all...] |
H A D | VideoRecordingHints.java | 19 import android.animation.Animator; 20 import android.animation.ObjectAnimator; 21 import android.animation.ValueAnimator; 72 public void onAnimationStart(Animator animation) { argument 77 public void onAnimationEnd(Animator animation) { argument 84 // If animation is canceled, do not restart it. 100 public void onAnimationCancel(Animator animation) { argument 105 public void onAnimationRepeat(Animator animation) { argument 117 public void onAnimationStart(Animator animation) { argument 122 public void onAnimationEnd(Animator animation) { argument 134 onAnimationCancel(Animator animation) argument 139 onAnimationRepeat(Animator animation) argument [all...] |
H A D | AnimationEffects.java | 19 import android.animation.Animator; 24 * This class aims to encapsulate animation internal states, so that different 36 * Draws what is needed for the animation in the background, before view calls 39 * @param canvas canvas that the animation effects will draw on 44 * Draws what is needed for the animation in the foreground, after view calls 47 * @param canvas canvas that the animation effects will draw on 52 * Starts the animation and sets the given animator listener as the listener 53 * for the animation. 58 * Cancels the current animation effects. 67 * Ends the current animation effect [all...] |
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/ |
H A D | BaseScrollAdapterFragment.java | 19 import android.animation.Animator; 26 import android.view.animation.DecelerateInterpolator; 149 public void onAnimationStart(Animator animation) { argument 156 public void onAnimationEnd(Animator animation) { argument 163 public void onAnimationCancel(Animator animation) { argument 168 public void onAnimationRepeat(Animator animation) { argument 192 ViewPropertyAnimator animation = mSelectorView.animate() 204 animation.scaleY(scaleY); 206 animation.start();
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
H A D | AnimatorUtils.java | 19 import android.animation.ArgbEvaluator; 20 import android.animation.ObjectAnimator; 21 import android.animation.PropertyValuesHolder; 22 import android.animation.TypeEvaluator; 23 import android.animation.ValueAnimator; 26 import android.view.animation.Interpolator;
|
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
H A D | IndicatorControlBarContainer.java | 27 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) {
|