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

1234567891011>>

/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
/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 DCaptureAnimationOverlay.java19 import android.animation.Animator;
20 import android.animation.AnimatorSet;
21 import android.animation.ValueAnimator;
29 import android.view.animation.Interpolator;
30 import android.view.animation.LinearInterpolator;
64 public void onAnimationUpdate(ValueAnimator animation) {
65 float alpha = 255.0f * (Float) animation.getAnimatedValue();
72 public void onAnimationStart(Animator animation) {
77 public void onAnimationEnd(Animator animation) {
83 public void onAnimationCancel(Animator animation) {
[all...]
H A DTouchCircleDrawable.java19 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...]
/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 DLauncherAnimUtils.java19 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 DInterruptibleInOutAnimator.java19 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/services/Car/car-support-lib/src/android/support/car/ui/
H A DAnimationListenerAdapter.java18 import android.view.animation.Animation;
22 * {@link android.view.animation.Animation.AnimationListener} for convenience reasons.
30 public void onAnimationStart(Animation animation) { argument
37 public void onAnimationEnd(Animation animation) { argument
44 public void onAnimationRepeat(Animation animation) { argument
/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...]
H A DLauncherAnimUtils.java19 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 DQsbBlockerView.java19 import android.animation.AnimatorSet;
20 import android.animation.ObjectAnimator;
21 import android.animation.ValueAnimator;
22 import android.animation.ValueAnimator.AnimatorUpdateListener;
H A DLauncherStateTransitionAnimation.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
23 import android.animation.PropertyValuesHolder;
24 import android.animation.TimeInterpolator;
25 import android.animation.ValueAnimator;
32 import android.view.animation.AccelerateInterpolator;
33 import android.view.animation.DecelerateInterpolator;
88 * animation use
479 playCommonTransitionAnimations( Workspace.State toWorkspaceState, View fromView, View toView, boolean animated, boolean initialized, AnimatorSet animation, HashMap<View, Integer> layerViews) argument
[all...]
/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/Camera2/src/com/android/camera/ui/motion/
H A DInterpolatorHelper.java20 import android.view.animation.AnimationUtils;
21 import android.view.animation.DecelerateInterpolator;
22 import android.view.animation.Interpolator;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DCaptureAnimation.java19 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/Dialer/src/com/android/dialer/dialpad/
H A DPseudoEmergencyAnimator.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.ArgbEvaluator;
22 import android.animation.ValueAnimator;
23 import android.animation.ValueAnimator.AnimatorUpdateListener;
88 public void onAnimationCancel(Animator animation) { }
91 public void onAnimationRepeat(Animator animation) {
95 animation.cancel();
100 public void onAnimationStart(Animator animation) { }
103 public void onAnimationEnd(Animator animation) {
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DTrimControllerOverlay.java19 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) {
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
H A DPermissionsFrameFragment.java24 import android.view.animation.Animation;
25 import android.view.animation.Animation.AnimationListener;
26 import android.view.animation.AnimationUtils;
95 Animation animation = AnimationUtils.loadAnimation(getContext(),
100 animation.setAnimationListener(new AnimationListener() {
102 public void onAnimationStart(Animation animation) {
106 public void onAnimationRepeat(Animation animation) {
110 public void onAnimationEnd(Animation animation) {
115 view.startAnimation(animation);
/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;
/packages/apps/Settings/src/com/android/settings/fingerprint/
H A DFingerprintLocationAnimationView.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
29 import android.view.animation.AnimationUtils;
30 import android.view.animation.Interpolator;
36 * View which plays an animation to indicate where the sensor is on the device.
128 public void onAnimationUpdate(ValueAnimator animation) {
129 mPulseRadius = (float) animation.getAnimatedValue();
138 public void onAnimationCancel(Animator animation) {
143 public void onAnimationEnd(Animator animation) {
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DMultiStateAlphaController.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
22 import android.animation.ValueAnimator.AnimatorUpdateListener;
53 // Only update the alpha if no zero-alpha animation is running.
90 // update alpha of the target view while the animation is running.
103 public void onAnimationStart(Animator animation) { argument
112 public void onAnimationEnd(Animator animation) { argument
H A DRevealOutlineAnimation.java3 import android.animation.Animator;
4 import android.animation.AnimatorListenerAdapter;
5 import android.animation.ValueAnimator;
16 * animation progresses from 0 to 1.
26 /** Returns whether elevation should be removed for the duration of the reveal animation. */
28 /** Sets the progress, from 0 to 1, of the reveal animation. */
43 public void onAnimationStart(Animator animation) {
52 public void onAnimationCancel(Animator animation) {
56 public void onAnimationEnd(Animator animation) {
/packages/screensavers/WebView/src/com/android/dreams/web/
H A DScreensaver.java19 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/TV/src/com/android/tv/ui/
H A DHardwareLayerAnimatorListenerAdapter.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
25 * animation.

Completed in 866 milliseconds

1234567891011>>