Home
last modified time | relevance | path

Searched refs:animation (Results 1 – 25 of 479) sorted by relevance

12345678910>>...20

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/interaction/
DAnimatedTaskView.java20 import android.animation.Animator;
21 import android.animation.AnimatorListenerAdapter;
22 import android.animation.AnimatorSet;
23 import android.animation.ObjectAnimator;
24 import android.animation.ValueAnimator;
34 import android.view.animation.ScaleAnimation;
35 import android.view.animation.TranslateAnimation;
112 scale.addUpdateListener(animation -> { in animateToFillScreen()
113 float value = (float) animation.getAnimatedValue(); in animateToFillScreen()
123 public void onAnimationEnd(Animator animation) { in animateToFillScreen()
[all …]
DAnimatedTaskbarView.java18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
115 public void onAnimationEnd(Animator animation) { in animateDisappearanceToHotseat()
116 super.onAnimationEnd(animation); in animateDisappearanceToHotseat()
121 public void onAnimationStart(Animator animation) { in animateDisappearanceToHotseat()
122 super.onAnimationStart(animation); in animateDisappearanceToHotseat()
156 public void onAnimationStart(Animator animation) { in animateAppearanceFromHotseat()
157 super.onAnimationStart(animation); in animateAppearanceFromHotseat()
[all …]
DBackGestureTutorialFragment.java18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
64 public void onAnimationStart(Animator animation) { in createGestureAnimation()
65 super.onAnimationStart(animation); in createGestureAnimation()
74 public void onAnimationEnd(Animator animation) { in createGestureAnimation()
75 super.onAnimationEnd(animation); in createGestureAnimation()
85 public void onAnimationEnd(Animator animation) { in createGestureAnimation()
86 super.onAnimationEnd(animation); in createGestureAnimation()
[all …]
DOverviewGestureTutorialFragment.java18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.AnimatorSet;
63 public void onAnimationStart(Animator animation) { in createGestureAnimation()
64 super.onAnimationStart(animation); in createGestureAnimation()
74 public void onAnimationStart(Animator animation) { in createGestureAnimation()
75 super.onAnimationStart(animation); in createGestureAnimation()
83 public void onAnimationEnd(Animator animation) { in createGestureAnimation()
84 super.onAnimationEnd(animation); in createGestureAnimation()
99 public void onAnimationCancel(Animator animation) { in createGestureAnimation()
[all …]
DHomeGestureTutorialFragment.java18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.AnimatorSet;
63 public void onAnimationStart(Animator animation) { in createGestureAnimation()
64 super.onAnimationStart(animation); in createGestureAnimation()
72 public void onAnimationEnd(Animator animation) { in createGestureAnimation()
73 super.onAnimationEnd(animation); in createGestureAnimation()
87 public void onAnimationCancel(Animator animation) { in createGestureAnimation()
88 super.onAnimationCancel(animation); in createGestureAnimation()
/packages/apps/Launcher3/src/com/android/launcher3/
DFirstFrameAnimatorHelper.java20 import android.animation.ValueAnimator;
21 import android.animation.ValueAnimator.AnimatorUpdateListener;
80 public void onAnimationUpdate(final ValueAnimator animation) { in onAnimationUpdate() argument
87 final long currentPlayTime = animation.getCurrentPlayTime(); in onAnimationUpdate()
88 boolean isFinalFrame = Float.compare(1f, animation.getAnimatedFraction()) == 0; in onAnimationUpdate()
96 currentPlayTime < animation.getDuration() && !isFinalFrame) { in onAnimationUpdate()
107 animation.setCurrentPlayTime(0); in onAnimationUpdate()
117 animation.setCurrentPlayTime(singleFrameMS); in onAnimationUpdate()
121 mRootView.post(() -> animation.removeUpdateListener(this)); in onAnimationUpdate()
123 if (DEBUG) print(animation); in onAnimationUpdate()
[all …]
/packages/apps/Car/Hvac/src/com/android/car/hvac/ui/
DTemperatureBarOverlay.java18 import android.animation.Animator;
19 import android.animation.AnimatorSet;
20 import android.animation.ObjectAnimator;
21 import android.animation.ValueAnimator;
183 AnimatorSet animation = new AnimatorSet(); in getExpandAnimatons() local
185 return animation; in getExpandAnimatons()
211 animation.playTogether(list); in getExpandAnimatons()
212 animation.addListener(mStateListener); in getExpandAnimatons()
214 return animation; in getExpandAnimatons()
220 AnimatorSet animation = new AnimatorSet(); in getCollapseAnimations() local
[all …]
/packages/apps/Dialer/java/com/android/dialer/animation/
DAnimUtils.java17 package com.android.dialer.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;
55 public void onAnimationEnd(Animator animation) { in fadeOut()
63 public void onAnimationCancel(Animator animation) { in fadeOut()
94 public void onAnimationStart(Animator animation) { in fadeIn()
99 public void onAnimationCancel(Animator animation) { in fadeIn()
[all …]
/packages/apps/Camera2/src/com/android/camera/ui/
DTouchCircleDrawable.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.ValueAnimator;
195 public void onAnimationUpdate(ValueAnimator animation) { in animate()
196 mColorRadius = (Integer) animation.getAnimatedValue(); in animate()
199 mUpdateListener.onAnimationUpdate(animation); in animate()
206 public void onAnimationStart(Animator animation) { in animate()
210 mAnimatorListener.onAnimationStart(animation); in animate()
215 public void onAnimationEnd(Animator animation) { in animate()
219 mAnimatorListener.onAnimationEnd(animation); in animate()
[all …]
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) { in CaptureAnimationOverlay()
65 float alpha = 255.0f * (Float) animation.getAnimatedValue(); in CaptureAnimationOverlay()
72 public void onAnimationStart(Animator animation) { in CaptureAnimationOverlay()
77 public void onAnimationEnd(Animator animation) { in CaptureAnimationOverlay()
83 public void onAnimationCancel(Animator animation) { in CaptureAnimationOverlay()
[all …]
DModeTransitionView.java19 import android.animation.Animator;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
22 import android.animation.ValueAnimator;
245 public void onAnimationUpdate(ValueAnimator animation) { in startPeepHoleAnimation()
264 public void onAnimationStart(Animator animation) { in startPeepHoleAnimation()
270 public void onAnimationEnd(Animator animation) { in startPeepHoleAnimation()
286 public void onAnimationCancel(Animator animation) { in startPeepHoleAnimation()
291 public void onAnimationRepeat(Animator animation) { in startPeepHoleAnimation()
347 public void onAnimationStart(Animator animation) { in snapShadeTo()
[all …]
DModeListView.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
23 import android.animation.TimeInterpolator;
24 import android.animation.ValueAnimator;
392 public void onAnimationStart(Animator animation) { in snapOpenAndShow()
397 public void onAnimationEnd(Animator animation) { in snapOpenAndShow()
403 public void onAnimationCancel(Animator animation) { in snapOpenAndShow()
408 public void onAnimationRepeat(Animator animation) { in snapOpenAndShow()
[all …]
/packages/apps/Camera2/src/com/android/camera/widget/
DModeOptions.java20 import android.animation.Animator;
21 import android.animation.AnimatorListenerAdapter;
22 import android.animation.AnimatorSet;
23 import android.animation.ValueAnimator;
253 public void onAnimationUpdate(ValueAnimator animation) { in setupAnimators()
254 mRadius = (Float) animation.getAnimatedValue(); in setupAnimators()
261 public void onAnimationEnd(Animator animation) { in setupAnimators()
271 public void onAnimationUpdate(ValueAnimator animation) { in setupAnimators()
272 mActiveBar.setAlpha((Float) animation.getAnimatedValue()); in setupAnimators()
277 public void onAnimationEnd(Animator animation) { in setupAnimators()
[all …]
/packages/apps/Dialer/java/com/android/dialer/main/impl/toolbar/
DSearchBarView.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
34 import com.android.dialer.animation.AnimUtils;
123 animator.addUpdateListener(animation -> setMargins((Float) animation.getAnimatedValue())); in expand()
128 public void onAnimationStart(Animator animation) { in expand()
129 super.onAnimationStart(animation); in expand()
135 public void onAnimationEnd(Animator animation) { in expand()
136 super.onAnimationEnd(animation); in expand()
160 animator.addUpdateListener(animation -> setMargins((Float) animation.getAnimatedValue())); in collapse()
[all …]
/packages/apps/PhoneCommon/src/com/android/phone/common/animation/
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;
62 public void onAnimationEnd(Animator animation) { in fadeOut()
70 public void onAnimationCancel(Animator animation) { in fadeOut()
97 public void onAnimationStart(Animator animation) { in fadeIn()
102 public void onAnimationCancel(Animator animation) { in fadeIn()
110 public void onAnimationEnd(Animator animation) { in fadeIn()
[all …]
/packages/services/Car/car_product/car_ui_portrait/apps/CarUiPortraitSystemUI/src/com/android/systemui/car/hvac/
DAutoDismissHvacPanelOverlayViewController.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
37 import com.android.wm.shell.animation.FlingAnimationUtils;
121 ObjectAnimator animation = ObjectAnimator in animate() local
124 animation.addListener(new AnimatorListenerAdapter() { in animate()
126 public void onAnimationEnd(Animator animation) { in animate()
127 super.onAnimationEnd(animation); in animate()
141 getFlingAnimationUtils().apply(animation, from, to, Math.abs(velocity)); in animate()
142 animation.start(); in animate()
[all …]
/packages/apps/StorageManager/src/com/android/storagemanager/utils/
DUtils.java20 import android.view.animation.Animation;
21 import android.view.animation.Animation.AnimationListener;
22 import android.view.animation.AnimationUtils;
34 Animation animation = in setViewShown() local
41 animation.setAnimationListener( in setViewShown()
44 public void onAnimationStart(Animation animation) {} in setViewShown()
47 public void onAnimationRepeat(Animation animation) {} in setViewShown()
50 public void onAnimationEnd(Animation animation) { in setViewShown()
55 view.startAnimation(animation); in setViewShown()
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint/
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;
128 public void onAnimationUpdate(ValueAnimator animation) { in startRadiusAnimation()
129 mPulseRadius = (float) animation.getAnimatedValue(); in startRadiusAnimation()
138 public void onAnimationCancel(Animator animation) { in startRadiusAnimation()
143 public void onAnimationEnd(Animator animation) { in startRadiusAnimation()
161 public void onAnimationUpdate(ValueAnimator animation) { in startAlphaAnimation()
[all …]
/packages/apps/Dialer/java/com/android/incallui/answer/impl/affordance/
DSwipeButtonView.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ArgbEvaluator;
22 import android.animation.PropertyValuesHolder;
23 import android.animation.ValueAnimator;
34 import android.view.animation.Interpolator;
76 public void onAnimationEnd(Animator animation) {
83 public void onAnimationEnd(Animator animation) {
90 public void onAnimationEnd(Animator animation) {
97 public void onAnimationEnd(Animator animation) {
[all …]
/packages/apps/Dialer/java/com/android/dialer/dialpadview/
DPseudoEmergencyAnimator.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.ArgbEvaluator;
22 import android.animation.ValueAnimator;
74 public void onAnimationCancel(Animator animation) {} in start()
77 public void onAnimationRepeat(Animator animation) { in start()
81 animation.cancel(); in start()
86 public void onAnimationStart(Animator animation) {} in start()
89 public void onAnimationEnd(Animator animation) { in start()
106 animation.cancel(); in start()
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/
DPieRenderer.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
34 import android.view.animation.Animation;
35 import android.view.animation.Animation.AnimationListener;
36 import android.view.animation.LinearInterpolator;
37 import android.view.animation.Transformation;
47 private ScaleAnimation animation = new ScaleAnimation(); field in PieRenderer
255 public void onAnimationStart(Animation animation) {} in fadeIn()
258 public void onAnimationEnd(Animation animation) { in fadeIn()
263 public void onAnimationRepeat(Animation animation) {} in fadeIn()
[all …]
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
DCrossFadeHelper.java18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.AnimatorSet;
21 import android.animation.ValueAnimator;
22 import android.animation.ValueAnimator.AnimatorUpdateListener;
46 public void onAnimationUpdate(ValueAnimator animation) {
47 final float alpha = (float) animation.getAnimatedValue();
74 public void onAnimationEnd(Animator animation) { in getFadeInAnimator()
89 public void onAnimationEnd(Animator animation) { in getFadeOutAnimator()
/packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
DTwoButtonMethod.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.ValueAnimator;
25 import android.animation.ValueAnimator.AnimatorUpdateListener;
193 public void onAnimationCancel(Animator animation) { in answerCall()
198 public void onAnimationEnd(Animator animation) { in answerCall()
217 public void onAnimationCancel(Animator animation) { in rejectCall()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/anim/
DKeyboardInsetAnimationCallback.java45 public void onPrepare(WindowInsetsAnimation animation) { in onPrepare() argument
56 WindowInsetsAnimation animation = list.get(0); in onProgress() local
58 if (animation.getDurationMillis() > -1) { in onProgress()
59 float progress = animation.getInterpolatedFraction(); in onProgress()
76 public WindowInsetsAnimation.Bounds onStart(WindowInsetsAnimation animation, in onStart() argument
82 return super.onStart(animation, bounds); in onStart()
86 public void onEnd(WindowInsetsAnimation animation) { in onEnd() argument
91 super.onEnd(animation); in onEnd()
/packages/apps/Launcher3/src/com/android/launcher3/keyboard/
DItemFocusIndicatorHelper.java18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.ObjectAnimator;
21 import android.animation.PropertyValuesHolder;
22 import android.animation.RectEvaluator;
23 import android.animation.ValueAnimator;
24 import android.animation.ValueAnimator.AnimatorUpdateListener;
117 public void onAnimationUpdate(ValueAnimator animation) { in onAnimationUpdate() argument
238 public void onAnimationCancel(Animator animation) { in onAnimationCancel() argument
245 public void onAnimationEnd(Animator animation) { in onAnimationEnd() argument

12345678910>>...20