Searched refs:animation (Results 251 - 275 of 567) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingTabContainerView.java20 import android.animation.Animator;
21 import android.animation.ObjectAnimator;
22 import android.animation.TimeInterpolator;
34 import android.view.animation.DecelerateInterpolator;
553 public void onAnimationStart(Animator animation) { argument
555 mVisibilityAnim = animation;
560 public void onAnimationEnd(Animator animation) { argument
568 public void onAnimationCancel(Animator animation) { argument
573 public void onAnimationRepeat(Animator animation) { argument
H A DFloatingToolbar.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
23 import android.animation.ValueAnimator;
51 import android.view.animation.Animation;
52 import android.view.animation.AnimationSet;
53 import android.view.animation.AnimationUtils;
54 import android.view.animation.Interpolator;
55 import android.view.animation
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
H A DPipMenuActivity.java36 import android.animation.Animator;
37 import android.animation.AnimatorListenerAdapter;
38 import android.animation.AnimatorSet;
39 import android.animation.ObjectAnimator;
40 import android.animation.ValueAnimator;
125 public void onAnimationUpdate(ValueAnimator animation) {
126 final float alpha = (float) animation.getAnimatedValue();
327 // Hide without an animation (the menu should already be invisible at this point)
339 // trigger the animation trigger afterwards
382 public void onAnimationEnd(Animator animation) {
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickStepController.java26 import android.animation.Animator;
27 import android.animation.AnimatorListenerAdapter;
28 import android.animation.AnimatorSet;
29 import android.animation.ArgbEvaluator;
30 import android.animation.ObjectAnimator;
31 import android.animation.PropertyValuesHolder;
47 import android.view.animation.DecelerateInterpolator;
48 import android.view.animation.Interpolator;
147 public void onAnimationEnd(Animator animation) {
H A DPanelView.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
22 import android.animation.ValueAnimator;
35 import android.view.animation.Interpolator;
180 public void onAnimationCancel(Animator animation) {
185 public void onAnimationEnd(Animator animation) {
745 // the animation only to the last notification, and then jump to the maximum panel height so
782 // Make it shorter if we run a canned animation
794 public void onAnimationCancel(Animator animation) {
[all...]
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
H A DSwipeRefreshLayout.java28 import android.view.animation.Animation;
29 import android.view.animation.Animation.AnimationListener;
30 import android.view.animation.DecelerateInterpolator;
31 import android.view.animation.Transformation;
59 * animation, it should call setRefreshing(true). To disable the gesture and
60 * progress animation, call setEnabled(false) on the view.
180 public void onAnimationStart(Animation animation) {
184 public void onAnimationRepeat(Animation animation) {
188 public void onAnimationEnd(Animation animation) {
212 setAnimationProgress(0 /* animation complet
911 isAnimationRunning(Animation animation) argument
[all...]
/frameworks/base/core/java/android/view/animation/
H A DAnimationSet.java17 package android.view.animation;
30 * The transformation of each individual animation are composed
118 * Pass false if each animation should use its own interpolator.
127 final AnimationSet animation = (AnimationSet) super.clone();
128 animation.mTempTransformation = new Transformation();
129 animation.mAnimations = new ArrayList<Animation>();
135 animation.mAnimations.add(animations.get(i).clone());
138 return animation;
200 * <p>Sets the duration of every child animation.</p>
202 * @param durationMillis the duration of the animation, i
[all...]
/frameworks/base/core/java/android/widget/
H A DSmartSelectSprite.java21 import android.animation.Animator;
22 import android.animation.AnimatorSet;
23 import android.animation.ObjectAnimator;
24 import android.animation.ValueAnimator;
38 import android.view.animation.AnimationUtils;
39 import android.view.animation.Interpolator;
50 * A utility class for creating and animating the Smart Select animation.
331 * @param context the {@link Context} in which the animation will run
333 * @param invalidator a {@link Runnable} which will be called every time the animation updates,
334 * indicating that the view drawing the animation shoul
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DHardwareUiLayout.java17 import android.animation.Animator;
18 import android.animation.AnimatorListenerAdapter;
19 import android.animation.AnimatorSet;
20 import android.animation.ObjectAnimator;
328 public void onAnimationEnd(Animator animation) {
337 top.addUpdateListener(animation -> mBackground.invalidateSelf());
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DRadialTextsView.java19 import android.animation.Keyframe;
20 import android.animation.ObjectAnimator;
21 import android.animation.PropertyValuesHolder;
22 import android.animation.ValueAnimator;
23 import android.animation.ValueAnimator.AnimatorUpdateListener;
158 * Allows for smoother animation.
166 * Used by the animation to move the numbers in and out.
337 Log.e(TAG, "RadialTextView was not ready for animation.");
346 Log.e(TAG, "RadialTextView was not ready for animation.");
355 public void onAnimationUpdate(ValueAnimator animation) { argument
[all...]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DFastScroller.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
22 import android.animation.ValueAnimator.AnimatorUpdateListener;
556 public void onAnimationEnd(Animator animation) { argument
572 public void onAnimationCancel(Animator animation) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java24 import android.animation.Animator;
25 import android.animation.AnimatorListenerAdapter;
26 import android.animation.AnimatorSet;
27 import android.animation.ValueAnimator;
28 import android.animation.ValueAnimator.AnimatorUpdateListener;
72 import android.view.animation.Interpolator;
576 * Takes a screenshot of the current display and shows an animation.
597 // Start the post-screenshot animation
669 * Starts the animation after taking the screenshot
680 // Add the view for the animation
[all...]
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DBaseCardView.java27 import android.view.animation.AccelerateDecelerateInterpolator;
28 import android.view.animation.Animation;
29 import android.view.animation.DecelerateInterpolator;
30 import android.view.animation.Transformation;
208 * Sets a flag indicating if the Selected animation (if the selected card
211 * animation. This is a one-shot override. If set to false, after the card
212 * is selected and the selected animation is triggered, this flag is
214 * default behavior, and have the selected animation run immediately. One
216 * instead of delaying the selected animation until the user pauses on a
217 * card, it may be desirable to trigger the animation fo
[all...]
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h84 Animation* animation; member in struct:android::BootAnimation::Animation::Part
100 // the animation and be provided with all parts in animation.
103 // Will be called while animation is playing before each part is
112 // Will be called when animation is done and thread is shutting down.
156 bool preloadZip(Animation &animation);
/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java17 package android.animation;
19 import android.animation.Keyframe.FloatKeyframe;
25 * values between those keyframes for a given animation. The class internal to the animation
30 * TypeEvaluator set for the animation, so that values can be calculated without autoboxing to the
H A DIntKeyframeSet.java17 package android.animation;
19 import android.animation.Keyframe.IntKeyframe;
25 * values between those keyframes for a given animation. The class internal to the animation
30 * TypeEvaluator set for the animation, so that values can be calculated without autoboxing to the
/frameworks/base/core/tests/coretests/src/android/transition/
H A DTransitionTest.java19 import android.animation.AnimatorSetActivity;
27 import android.view.animation.AccelerateInterpolator;
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/tv/
H A DPipControlButtonView.java19 import android.animation.Animator;
20 import android.animation.AnimatorInflater;
167 * Starts the focus gain animation.
174 // If we had faded out the ripple drawable, run our manual focus change animation.
182 * Starts the focus loss animation.
189 // Button uses ripple that has the default animation for the focus changes.
191 // so we should manually run the fade out animation when PIP controls row loses focus.
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPathInterpolatorBuilder.java18 import android.view.animation.BaseInterpolator;
19 import android.view.animation.Interpolator;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskView.java19 import android.animation.Animator;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
22 import android.animation.ValueAnimator;
477 * @param fadeInDuration the duration of the action button animation, only used if
556 AnimationProps animation = new AnimationProps(duration, Interpolators.ALPHA_OUT);
557 mDimAnimator = animation.apply(AnimationProps.DIM_ALPHA, ObjectAnimator.ofFloat(this,
582 AnimationProps animation = new AnimationProps(duration, Interpolators.ALPHA_OUT);
583 mDimAnimator = animation.apply(AnimationProps.DIM_ALPHA, ObjectAnimator.ofFloat(this,
715 // Reset the clip state for the drag view after the end animation complete
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationMenuRow.java30 import android.animation.Animator;
31 import android.animation.AnimatorListenerAdapter;
32 import android.animation.ValueAnimator;
575 public void onAnimationUpdate(ValueAnimator animation) {
581 setMenuAlpha((float) animation.getAnimatedValue());
587 public void onAnimationStart(Animator animation) {
592 public void onAnimationCancel(Animator animation) {
598 public void onAnimationEnd(Animator animation) {
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DWindowAnimationSpecTest.java34 import android.view.animation.Animation;
35 import android.view.animation.ClipRectAnimation;
93 // Stack bounds is (0, 0, 10, 10) animation clip is (0, 0, 0, 0)
104 // Stack bounds is (0, 0, 0, 0) animation clip is (0, 0, 20, 20)
117 // Stack bounds is (0, 0, 10, 10) animation clip is (0, 0, 5, 5)
130 // Stack bounds is (0, 0, 10, 10) animation clip is (0, 0, 20, 20)
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DBitmapsActivity.java31 import android.view.animation.Animation;
32 import android.view.animation.ScaleAnimation;
H A DViewPropertyAlphaActivity.java19 import android.animation.ObjectAnimator;
20 import android.animation.ValueAnimator;
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/
H A DBitmapUploadActivity.java19 import android.animation.ObjectAnimator;
20 import android.animation.ValueAnimator;

Completed in 556 milliseconds

<<11121314151617181920>>