Home
last modified time | relevance | path

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

12345678910>>...40

/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/
H A DActivityEmbeddingAnimationSpec.java25 import android.view.animation.AlphaAnimation;
26 import android.view.animation.Animation;
27 import android.view.animation.AnimationSet;
28 import android.view.animation.AnimationUtils;
29 import android.view.animation.Interpolator;
113 return animation; in createChangeBoundsOpenAnimation()
141 return animation; in createChangeBoundsCloseAnimation()
202 final Animation animation; in loadOpenAnimation() local
219 return animation; in loadOpenAnimation()
226 final Animation animation; in loadCloseAnimation() local
[all …]
/aosp14/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/
H A DTaskFragmentAnimationSpec.java30 import android.view.animation.AlphaAnimation;
31 import android.view.animation.Animation;
32 import android.view.animation.AnimationSet;
33 import android.view.animation.AnimationUtils;
35 import android.view.animation.Interpolator;
110 return animation; in createChangeBoundsOpenAnimation()
138 return animation; in createChangeBoundsCloseAnimation()
207 final Animation animation; in loadOpenAnimation() local
225 return animation; in loadOpenAnimation()
232 final Animation animation; in loadCloseAnimation() local
[all …]
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListWithDisappearingItemBug.java23 import android.view.animation.AlphaAnimation;
24 import android.view.animation.Animation;
25 import android.view.animation.AnimationSet;
26 import android.view.animation.LayoutAnimationController;
27 import android.view.animation.TranslateAnimation;
63 Animation animation = new AlphaAnimation(0.0f, 1.0f); in onCreate() local
64 animation.setDuration(50); in onCreate()
65 set.addAnimation(animation); in onCreate()
67 animation = new TranslateAnimation( in onCreate()
71 animation.setDuration(100); in onCreate()
[all …]
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/
H A DTransitionDslImpl.kt17 package com.android.compose.animation.scene
19 import androidx.compose.animation.core.AnimationSpec
20 import androidx.compose.animation.core.DurationBasedAnimationSpec
21 import androidx.compose.animation.core.Spring
22 import androidx.compose.animation.core.VectorConverter
23 import androidx.compose.animation.core.spring
26 import com.android.compose.animation.scene.transformation.AnchoredSize
29 import com.android.compose.animation.scene.transformation.Fade
31 import com.android.compose.animation.scene.transformation.PunchHole
33 import com.android.compose.animation.scene.transformation.ScaleSize
[all …]
H A DSceneTransitions.kt17 package com.android.compose.animation.scene
19 import androidx.compose.animation.core.AnimationSpec
20 import androidx.compose.animation.core.snap
23 import com.android.compose.animation.scene.transformation.AnchoredSize
24 import com.android.compose.animation.scene.transformation.AnchoredTranslate
25 import com.android.compose.animation.scene.transformation.EdgeTranslate
26 import com.android.compose.animation.scene.transformation.Fade
27 import com.android.compose.animation.scene.transformation.ModifierTransformation
30 import com.android.compose.animation.scene.transformation.ScaleSize
31 import com.android.compose.animation.scene.transformation.Transformation
[all …]
/aosp14/frameworks/base/core/java/android/animation/
H A DAnimatorListenerAdapter.java17 package android.animation;
31 public void onAnimationCancel(Animator animation) { in onAnimationCancel() argument
38 public void onAnimationEnd(Animator animation) { in onAnimationEnd() argument
45 public void onAnimationRepeat(Animator animation) { in onAnimationRepeat() argument
52 public void onAnimationStart(Animator animation) { in onAnimationStart() argument
59 public void onAnimationPause(Animator animation) { in onAnimationPause() argument
66 public void onAnimationResume(Animator animation) { in onAnimationResume() argument
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DSettingsButton.java18 import android.animation.Animator;
19 import android.animation.Animator.AnimatorListener;
20 import android.animation.ObjectAnimator;
28 import android.view.animation.Animation;
29 import android.view.animation.AnimationUtils;
32 import com.android.app.animation.Interpolators;
121 public void onAnimationEnd(Animator animation) { in startExitAnimation()
145 public void onAnimationStart(Animator animation) { in startAccelSpin()
149 public void onAnimationRepeat(Animator animation) { in startAccelSpin()
153 public void onAnimationEnd(Animator animation) { in startAccelSpin()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/wakelock/
H A DKeepAwakeAnimationListener.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
22 import android.view.animation.Animation;
41 public void onAnimationStart(Animation animation) { in onAnimationStart() argument
46 public void onAnimationEnd(Animation animation) { in onAnimationEnd() argument
51 public void onAnimationRepeat(Animation animation) { in onAnimationRepeat() argument
56 public void onAnimationStart(Animator animation) { in onAnimationStart() argument
61 public void onAnimationEnd(Animator animation) { in onAnimationEnd() argument
/aosp14/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DRevealActivity.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.AnimatorSet;
45 public void onAnimationStart(Animator animation) {
46 Log.d("Reveal", "onAnimatorStart " + animation);
50 public void onAnimationRepeat(Animator animation) {
51 Log.d("Reveal", "onAnimationRepeat " + animation);
55 public void onAnimationEnd(Animator animation) {
56 Log.d("Reveal", "onAnimationEnd " + animation);
60 public void onAnimationCancel(Animator animation) {
[all …]
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/transformation/
H A DAnchoredSize.kt17 package com.android.compose.animation.scene.transformation
20 import com.android.compose.animation.scene.Element
21 import com.android.compose.animation.scene.ElementKey
22 import com.android.compose.animation.scene.ElementMatcher
23 import com.android.compose.animation.scene.Scene
24 import com.android.compose.animation.scene.SceneKey
25 import com.android.compose.animation.scene.SceneTransitionLayoutImpl
26 import com.android.compose.animation.scene.TransitionState
H A DAnchoredTranslate.kt17 package com.android.compose.animation.scene.transformation
21 import com.android.compose.animation.scene.Element
22 import com.android.compose.animation.scene.ElementKey
23 import com.android.compose.animation.scene.ElementMatcher
24 import com.android.compose.animation.scene.Scene
25 import com.android.compose.animation.scene.SceneKey
26 import com.android.compose.animation.scene.SceneTransitionLayoutImpl
27 import com.android.compose.animation.scene.TransitionState
H A DFade.kt17 package com.android.compose.animation.scene.transformation
19 import com.android.compose.animation.scene.Element
20 import com.android.compose.animation.scene.ElementMatcher
21 import com.android.compose.animation.scene.Scene
22 import com.android.compose.animation.scene.SceneTransitionLayoutImpl
23 import com.android.compose.animation.scene.TransitionState
H A DScaleSize.kt17 package com.android.compose.animation.scene.transformation
20 import com.android.compose.animation.scene.Element
21 import com.android.compose.animation.scene.ElementMatcher
22 import com.android.compose.animation.scene.Scene
23 import com.android.compose.animation.scene.SceneTransitionLayoutImpl
24 import com.android.compose.animation.scene.TransitionState
/aosp14/frameworks/base/tests/WindowInsetsTests/src/com/google/android/test/windowinsetstests/
H A DChatActivity.java24 import android.animation.Animator;
25 import android.animation.AnimatorListenerAdapter;
26 import android.animation.ValueAnimator;
41 import android.view.animation.LinearInterpolator;
187 public void onEnd(WindowInsetsAnimation animation) { in onCreate()
202 anim.addUpdateListener(animation in onCreate()
244 void onPrepare(WindowInsetsAnimation animation) { in onPrepare() argument
245 if ((animation.getTypeMask() & ime()) != 0) { in onPrepare()
246 mInsetsAnimation = animation; in onPrepare()
261 void onFinish(WindowInsetsAnimation animation) { in onFinish() argument
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DFadeAnimationController.java26 import android.view.animation.Animation;
27 import android.view.animation.AnimationUtils;
28 import android.view.animation.Transformation;
79 final Animation animation = show ? getFadeInAnimation() : getFadeOutAnimation(); in fadeWindowToken() local
80 final FadeAnimationAdapter animationAdapter = animation != null in fadeWindowToken()
81 ? createAdapter(createAnimationSpec(animation), show, windowToken) : null; in fadeWindowToken()
96 @NonNull Animation animation) { in createAnimationSpec()
108 return animation.getDuration(); in createAnimationSpec()
115 animation.getTransformation(currentPlayTime, mTransformation); in createAnimationSpec()
122 pw.println(animation); in createAnimationSpec()
[all …]
H A DWindowAnimationSpec.java31 import android.view.animation.Animation;
32 import android.view.animation.AnimationSet;
33 import android.view.animation.Interpolator;
34 import android.view.animation.Transformation;
35 import android.view.animation.TranslateAnimation;
65 mAnimation = animation; in WindowAnimationSpec()
220 private static TranslateAnimation findTranslateAnimation(Animation animation) { in findTranslateAnimation() argument
221 if (animation instanceof TranslateAnimation) { in findTranslateAnimation()
222 return (TranslateAnimation) animation; in findTranslateAnimation()
223 } else if (animation instanceof AnimationSet) { in findTranslateAnimation()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationDozeHelper.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
27 import com.android.app.animation.Interpolators;
40 public void onAnimationUpdate(ValueAnimator animation) { in fadeGrayscale()
41 updateGrayscale(target, (float) animation.getAnimatedValue()); in fadeGrayscale()
45 public void onAnimationEnd(Animator animation) { in fadeGrayscale()
90 public void onAnimationEnd(Animator animation) { in setDozing()
95 public void onAnimationStart(Animator animation) { in setDozing()
96 view.setTag(DOZE_ANIMATOR_TAG, animation); in setDozing()
/aosp14/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleAnimationSession.java19 import android.animation.Animator;
20 import android.animation.TimeInterpolator;
21 import android.animation.ValueAnimator;
30 import android.view.animation.AnimationUtils;
31 import android.view.animation.Interpolator;
32 import android.view.animation.LinearInterpolator;
33 import android.view.animation.PathInterpolator;
124 super.onAnimationEnd(animation); in exitSoftware()
159 super.onAnimationEnd(animation); in exitHardware()
197 super.onAnimationEnd(animation); in startAnimation()
[all …]
/aosp14/system/core/healthd/
H A Dhealthd_draw.h32 void redraw_screen(const animation* batt_anim, GRSurface* surf_unknown);
44 static std::unique_ptr<HealthdDraw> Create(animation *anim);
56 virtual void determine_xy(const animation::text_field& field,
60 virtual void draw_battery(const animation* anim);
62 virtual void draw_clock(const animation* anim);
64 virtual void draw_percent(const animation* anim);
89 HealthdDraw(animation* anim);
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityViewTransition.kt19 import android.animation.Animator
20 import android.animation.AnimatorListenerAdapter
21 import android.animation.ValueAnimator
28 import android.view.animation.AnimationUtils
29 import com.android.app.animation.Interpolators
110 override fun onAnimationEnd(animation: Animator) {
119 runningSecurityShiftAnimator.addUpdateListener { animation: ValueAnimator ->
121 val isFadingOut = animation.animatedFraction < switchPoint
124 (positionInterpolator.getInterpolation(animation.animatedFraction) *
142 animation.animatedFraction
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/
H A DMenuAnimationController.java21 import android.animation.ValueAnimator;
28 import android.view.animation.Animation;
29 import android.view.animation.OvershootInterpolator;
30 import android.view.animation.TranslateAnimation;
33 import androidx.dynamicanimation.animation.FlingAnimation;
36 import androidx.dynamicanimation.animation.SpringForce;
90 (animation) -> menuView.setAlpha((float) animation.getAnimatedValue())); in MenuAnimationController()
429 final TranslateAnimation animation =
434 animation.setDuration(ANIMATION_DURATION_MS);
435 animation.setRepeatMode(Animation.REVERSE);
[all …]
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DDrawableHolder.java21 import android.animation.Animator;
22 import android.animation.ObjectAnimator;
23 import android.animation.ValueAnimator;
24 import android.animation.Animator.AnimatorListener;
28 import android.view.animation.DecelerateInterpolator;
210 public void onAnimationCancel(Animator animation) { in onAnimationCancel() argument
214 public void onAnimationEnd(Animator animation) { in onAnimationEnd() argument
215 mAnimators.remove(animation); in onAnimationEnd()
218 public void onAnimationRepeat(Animator animation) { in onAnimationRepeat() argument
222 public void onAnimationStart(Animator animation) { in onAnimationStart() argument
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/compatui/
H A DDialogAnimationController.java23 import android.animation.Animator;
24 import android.animation.AnimatorListenerAdapter;
25 import android.animation.ObjectAnimator;
36 import android.view.animation.Animation;
152 Animation animation = mTransitionAnimation.loadAnimationAttr(mPackageName, mAnimStyleResId, in loadAnimation() local
154 if (animation == null) { in loadAnimation()
157 return animation; in loadAnimation()
164 public void onAnimationStart(Animation animation) { in getAnimationListener()
169 public void onAnimationEnd(Animation animation) { in getAnimationListener() argument
174 public void onAnimationRepeat(Animation animation) {} in getAnimationListener() argument
[all …]
/aosp14/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java19 import android.animation.Animator;
20 import android.animation.TimeInterpolator;
21 import android.animation.ValueAnimator;
1073 mAnimatorSetupMap.remove(animation); in onAnimationStart()
1080 mAnimatorOnStartMap.remove(animation); in onAnimationStart()
1083 mListener.onAnimationStart(animation); in onAnimationStart()
1093 mAnimatorOnEndMap.remove(animation); in onAnimationCancel()
1112 mAnimatorCleanupMap.remove(animation); in onAnimationEnd()
1115 mListener.onAnimationEnd(animation); in onAnimationEnd()
1122 mAnimatorOnEndMap.remove(animation); in onAnimationEnd()
[all …]
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/
H A DExpandedViewAnimationControllerImpl.java16 package com.android.wm.shell.bubbles.animation;
27 import android.animation.Animator;
28 import android.animation.AnimatorListenerAdapter;
29 import android.animation.AnimatorSet;
30 import android.animation.ObjectAnimator;
31 import android.animation.ValueAnimator;
39 import androidx.dynamicanimation.animation.DynamicAnimation;
41 import androidx.dynamicanimation.animation.SpringAnimation;
42 import androidx.dynamicanimation.animation.SpringForce;
44 import com.android.wm.shell.animation.FlingAnimationUtils;
[all …]

12345678910>>...40