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

12

/packages/apps/PhoneCommon/src/com/android/phone/common/animation/
H A DAnimationListenerAdapter.java17 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 DAnimUtils.java17 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 DRotatable.java20 // Set parameter 'animation' to true to have animation when rotation.
21 public void setOrientation(int orientation, boolean animation); argument
H A DRotateImageView.java29 import android.view.animation.AnimationUtils;
65 public void setOrientation(int degree, boolean animation) { argument
66 mEnableAnimation = animation;
H A DRotateLayout.java181 public void setOrientation(int orientation, boolean animation) { argument
H A DFaceView.java123 public void setOrientation(int orientation, boolean animation) { argument
143 // Ignore the parameter. No autofocus animation for face detection.
150 // Ignore the parameter. No autofocus animation for face detection.
/packages/apps/Camera2/src/com/android/camera/ui/
H A DRotatable.java20 // Set parameter 'animation' to true to have animation when rotation.
21 public void setOrientation(int orientation, boolean animation); argument
H A DRotateLayout.java116 public void setOrientation(int orientation, boolean animation) { argument
H A DFaceView.java118 public void setOrientation(int orientation, boolean animation) { argument
/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 DFirstFrameAnimatorHelper.java19 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 DDeleteDropTarget.java19 import android.animation.TimeInterpolator;
20 import android.animation.ValueAnimator;
21 import android.animation.ValueAnimator.AnimatorUpdateListener;
34 import android.view.animation.AnimationUtils;
35 import android.view.animation.DecelerateInterpolator;
36 import android.view.animation.LinearInterpolator;
264 * Creates an animation from the current drag view to the delete trash icon.
294 public void onAnimationUpdate(ValueAnimator animation) {
296 float t = ((Float) animation.getAnimatedValue()).floatValue();
318 * Creates an animation fro
342 onAnimationUpdate(ValueAnimator animation) argument
[all...]
H A DLauncherViewPropertyAnimator.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.TimeInterpolator;
100 public void onAnimationCancel(Animator animation) { argument
109 public void onAnimationEnd(Animator animation) { argument
118 public void onAnimationRepeat(Animator animation) { argument
126 public void onAnimationStart(Animator animation) { argument
129 mFirstFrameHelper.onAnimationStart(animation);
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DHardwareLayerEnabler.java3 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/Messaging/src/com/android/messaging/ui/animation/
H A DRectEvaluatorCompat.java16 package com.android.messaging.ui.animation;
18 import android.animation.RectEvaluator;
19 import android.animation.TypeEvaluator;
H A DViewGroupItemVerticalExplodeAnimation.java16 package com.android.messaging.ui.animation;
42 * Shows a vertical "explode" animation for any view inside a view group (e.g. views inside a
43 * ListView). During the animation, a snapshot is taken for the view to the animated and
45 * of the view (a highlight) vertically expands (explodes) during the animation.
48 * The exact implementation of the animation depends on platform API level. For JB_MR2 and later,
51 * the animation.
54 * To start this animation, call {@link #startAnimationForView(ViewGroup, View, View, boolean, int)}
59 * Starts a vertical explode animation for a given view situated in a given container.
61 * @param container the container of the view which determines the explode animation's final
65 * @param animationStagingView the view that stages the animation
[all...]
H A DPopupTransitionAnimation.java17 package com.android.messaging.ui.animation;
19 import android.animation.TypeEvaluator;
27 import android.view.animation.Animation;
28 import android.view.animation.Transformation;
39 * This class handles the case where the viewToAnimate moves during the animation
45 /** The rect to start the slide in animation from */
51 /** The rect that we're animating to. This can change during the animation */
60 /** Interpolates between the start and end rect for every animation tick */
90 public void onAnimationStart(final Animation animation) {
98 public void onAnimationEnd(final Animation animation) {
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DFirstFrameAnimatorHelper.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
30 * This is a helper class that listens to updates from the corresponding animation.
31 * For the first two frames, it adjusts the current play time of the animation to
32 * prevent jank at the beginning of the animation
60 public void onAnimationStart(Animator animation) { argument
61 final ValueAnimator va = (ValueAnimator) animation;
89 public void onAnimationUpdate(final ValueAnimator animation) { argument
96 final long currentPlayTime = animation
140 print(ValueAnimator animation) argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DFlingAnimation.java3 import android.animation.TimeInterpolator;
4 import android.animation.ValueAnimator;
5 import android.animation.ValueAnimator.AnimatorUpdateListener;
8 import android.view.animation.DecelerateInterpolator;
59 * The fling animation is based on the following system
61 * - The animation runs for the time taken by the object to go out of the screen.
91 public void onAnimationUpdate(ValueAnimator animation) { argument
92 float t = animation.getAnimatedFraction();
/packages/apps/Camera/src/com/android/camera/
H A DRotateDialogController.java23 import android.view.animation.Animation;
24 import android.view.animation.AnimationUtils;
82 public void setOrientation(int orientation, boolean animation) { argument
84 mRotateDialog.setOrientation(orientation, animation);
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DMovieControllerOverlay.java24 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/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLRoot.java35 public void registerLaunchedAnimation(CanvasAnimation animation); argument
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
H A DCheckableContactFlipDrawable.java18 import android.animation.ValueAnimator;
19 import android.animation.ValueAnimator.AnimatorUpdateListener;
50 /** Must be <= 1f since the animation value is used as a percentage. */
60 // We will create checkmark animations that are synchronized with the flipping animation.
61 // The entire delay + duration of the checkmark animation needs to equal the entire
62 // duration of the flip animation (where delay is 0).
64 // The checkmark animation is in effect only when the back drawable is being shown.
65 // For the flip animation duration <pre>[_][]|[][_]<post>
66 // The checkmark animation will be |--delay--|-duration-|
120 public void onAnimationUpdate(final ValueAnimator animation) { argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DEditorAnimator.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.AnimatorListenerAdapter;
22 import android.animation.AnimatorSet;
23 import android.animation.ObjectAnimator;
76 public void onAnimationEnd(Animator animation) {
99 * @param target The target view to perform the animation on.
212 * Creates a translation-animation for the given views
263 * quickly pushes buttons. Removes the reference once the animation has finished
269 public void onAnimationEnd(Animator animation) { argument
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
H A DBaseScrollAdapterFragment.java19 import android.animation.Animator;
26 import android.view.animation.DecelerateInterpolator;
155 public void onAnimationStart(Animator animation) { argument
162 public void onAnimationEnd(Animator animation) { argument
169 public void onAnimationCancel(Animator animation) { argument
174 public void onAnimationRepeat(Animator animation) { argument
198 ViewPropertyAnimator animation = mSelectorView.animate()
210 animation.scaleY(scaleY);
212 animation.start();

Completed in 383 milliseconds

12