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

1234567891011>>

/packages/apps/Dialer/java/com/android/dialer/animation/
H A DAnimationListenerAdapter.java17 package com.android.dialer.animation;
19 import android.view.animation.Animation;
20 import android.view.animation.Animation.AnimationListener;
30 public void onAnimationStart(Animation animation) {} argument
34 public void onAnimationEnd(Animation animation) {} argument
38 public void onAnimationRepeat(Animation animation) {} argument
/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...]
/packages/apps/Launcher3/src/com/android/launcher3/anim/
H A DPropertyResetListener.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
25 * An AnimatorListener that sets the given property to the given value at the end of the animation.
38 public void onAnimationEnd(Animator animation) { argument
39 mPropertyToReset.set((T) ((ObjectAnimator) animation).getTarget(), mResetToValue);
/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;
29 * This is a helper class that listens to updates from the corresponding animation.
30 * For the first two frames, it adjusts the current play time of the animation to
31 * 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 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;
29 import android.view.animation.AccelerateInterpolator;
83 * animation used for the widget tray
87 * animation use
358 playCommonTransitionAnimations( Workspace.State toWorkspaceState, boolean animated, boolean initialized, AnimatorSet animation, AnimationLayerSet layerViews) 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;
35 public void onAnimationStart(Animator animation) {
36 sAnimators.put(animation, null);
39 public void onAnimationRepeat(Animator animation) {
42 public void onAnimationEnd(Animator animation) {
43 sAnimators.remove(animation);
[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/StorageManager/src/com/android/storagemanager/utils/
H A DUtils.java20 import android.view.animation.Animation;
21 import android.view.animation.Animation.AnimationListener;
22 import android.view.animation.AnimationUtils;
34 Animation animation =
41 animation.setAnimationListener(
44 public void onAnimationStart(Animation animation) {}
47 public void onAnimationRepeat(Animation animation) {}
50 public void onAnimationEnd(Animation animation) {
55 view.startAnimation(animation);
/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/java/com/android/incallui/answer/impl/utils/
H A DInterpolators.java19 import android.view.animation.Interpolator;
20 import android.view.animation.PathInterpolator;
/packages/apps/Launcher3/src/com/android/launcher3/notification/
H A DInterpolators.java19 import android.view.animation.Interpolator;
20 import android.view.animation.PathInterpolator;
/packages/apps/Settings/src/com/android/settings/widget/
H A DLoadingViewController.java22 import android.view.animation.Animation;
23 import android.view.animation.AnimationUtils;
49 // Cancel any pending task to show the loading animation and show the list of
80 Animation animation = AnimationUtils.loadAnimation(view.getContext(),
85 animation.setAnimationListener(new Animation.AnimationListener() {
87 public void onAnimationStart(Animation animation) {
91 public void onAnimationRepeat(Animation animation) {
95 public void onAnimationEnd(Animation animation) {
100 view.startAnimation(animation);
/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/Car/Radio/src/com/android/car/radio/
H A DRadioPresetsFragment.java19 import android.animation.Animator;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
119 public void onAnimationStart(Animator animation) {}
122 public void onAnimationEnd(Animator animation) {
127 public void onAnimationCancel(Animator animation) {}
130 public void onAnimationRepeat(Animator animation) {}
138 public void onAnimationStart(Animator animation) {}
141 public void onAnimationEnd(Animator animation) {
146 public void onAnimationCancel(Animator animation) {}
[all...]
/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/Car/Hvac/src/com/android/car/hvac/ui/
H A DHvacPanelRow.java18 import android.animation.AnimatorSet;
19 import android.animation.ValueAnimator;
103 public void onAnimationUpdate(ValueAnimator animation) {
104 float value = (float) animation.getAnimatedValue();
112 public void onAnimationUpdate(ValueAnimator animation) {
113 float alpha = (float) animation.getAnimatedValue();

Completed in 6954 milliseconds

1234567891011>>