Searched refs:animation (Results 51 - 75 of 567) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/animation/
H A DObjectAnimatorEventsTest.java16 package android.animation;
H A DBasicAnimatorActivity.java16 package android.animation;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsEntrancePathInterpolator.java19 import android.view.animation.PathInterpolator;
22 * A helper interpolator to stagger the entrance animation in recents by offsetting the start time
35 * @param startOffsetFraction The fraction from 0 to 1 to start the animation from
/frameworks/support/browser/src/main/java/androidx/browser/browseractions/
H A DBrowserActionsFallbackMenuDialog.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
29 import androidx.interpolator.view.animation.LinearOutSlowInInterpolator;
32 * The dialog class showing the context menu and ensures proper animation is played upon calling
37 // Exit animation duration should be set to 60% of the enter animation duration.
82 public void onAnimationEnd(Animator animation) {
/frameworks/support/leanback/kitkat/androidx/leanback/transition/
H A DScale.java18 import android.animation.Animator;
19 import android.animation.ValueAnimator;
66 public void onAnimationUpdate(ValueAnimator animation) {
67 final float scale = (Float) animation.getAnimatedValue();
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DFragmentAnimationProvider.java16 import android.animation.Animator;
24 * callback. Animators added here will be added to an animation set and played together. This
/frameworks/support/transition/src/main/java/androidx/transition/
H A DAnimatorUtils.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
75 void onAnimationPause(Animator animation); argument
77 void onAnimationResume(Animator animation); argument
H A DImageViewUtils.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
93 public void onAnimationEnd(Animator animation) {
102 animation.removeListener(this);
H A DPropertyValuesHolderUtils.java19 import android.animation.PropertyValuesHolder;
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java17 package android.view.animation;
30 * A layout animation controller is used to animated a layout's, or a view
31 * group's, children. Each child uses the same animation but for every one of
32 * them, the animation starts at a different time. A layout animation controller
34 * child's animation start must be offset. The delay is computed by using
42 * {@link android.view.animation.GridLayoutAnimationController} will compute the
46 * Information used to compute the animation delay of each child are stored
48 * {@link android.view.animation.LayoutAnimationController.AnimationParameters},
58 * Distributes the animation delay
133 LayoutAnimationController(Animation animation) argument
144 LayoutAnimationController(Animation animation, float delay) argument
200 setAnimation(Animation animation) argument
[all...]
H A DAnticipateOvershootInterpolator.java17 package android.view.animation;
29 import com.android.internal.view.animation.HasNativeInterpolator;
30 import com.android.internal.view.animation.NativeInterpolatorFactory;
31 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
/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;
61 * Adds an animation that interpolates given property from its current value
65 * @param delay the delay to start the animation, in ms.
68 * @param replace if true, replace the current animation with this one.
109 * Adds the given animation to the list of animations for this object.
210 public void onAnimationCancel(Animator animation) { argument
214 onAnimationEnd(Animator animation) argument
218 onAnimationRepeat(Animator animation) argument
222 onAnimationStart(Animator animation) argument
[all...]
/frameworks/support/frameworks/support/samples/SupportTransitionDemos/src/main/java/com/example/android/support/transition/widget/
H A DChangeColor.java19 import android.animation.Animator;
20 import android.animation.ArgbEvaluator;
21 import android.animation.ValueAnimator;
59 // Create an animation for each target that is in both the starting and ending Scene. For each
63 // animation frame
86 // different, create an animation.
91 // animation runs on the UI thread. The Evaluator controls what type of
99 public void onAnimationUpdate(ValueAnimator animation) {
100 Object value = animation.getAnimatedValue();
101 // Each time the ValueAnimator produces a new frame in the animation, chang
[all...]
/frameworks/support/leanback/src/main/java/androidx/leanback/transition/
H A DParallaxTransition.java21 import android.animation.Animator;
22 import android.animation.ValueAnimator;
29 import android.view.animation.Interpolator;
30 import android.view.animation.LinearInterpolator;
67 public void onAnimationUpdate(ValueAnimator animation) {
/frameworks/support/samples/SupportTransitionDemos/src/main/java/com/example/android/support/transition/widget/
H A DChangeColor.java19 import android.animation.Animator;
20 import android.animation.ArgbEvaluator;
21 import android.animation.ValueAnimator;
59 // Create an animation for each target that is in both the starting and ending Scene. For each
63 // animation frame
86 // different, create an animation.
91 // animation runs on the UI thread. The Evaluator controls what type of
99 public void onAnimationUpdate(ValueAnimator animation) {
100 Object value = animation.getAnimatedValue();
101 // Each time the ValueAnimator produces a new frame in the animation, chang
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
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;
55 public WindowAnimationSpec(Animation animation, Point position, boolean canSkipFirstFrame) { argument
56 this(animation, position, null /* stackBounds */, canSkipFirstFrame, STACK_CLIP_NONE,
60 public WindowAnimationSpec(Animation animation, Point position, Rect stackBounds, argument
62 mAnimation = animation;
158 * Tries to find a {@link TranslateAnimation} inside the {@code animation}
162 findTranslateAnimation(Animation animation) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailClipper.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.AnimatorListenerAdapter;
86 public void onAnimationStart(Animator animation) {
90 public void onAnimationEnd(Animator animation) {
97 public void onAnimationEnd(Animator animation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DPropertyAnimator.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.PropertyValuesHolder;
22 import android.animation.ValueAnimator;
25 import android.view.animation.Interpolator;
46 // no new animation needed, let's just apply the value
68 // we need to increase all animation keyframes of the previous animator by the
79 // no new animation needed, let's just apply the value
88 animation -> property.set(view, (Float) animation
[all...]
H A DNotificationIconDozeHelper.java65 startIntensityAnimation(animation -> {
66 updateImageColorFilter(target, (Float) animation.getAnimatedValue());
71 startIntensityAnimation(animation -> {
72 float t = (float) animation.getAnimatedValue();
86 // Also, the notification might have been modified during the animation, so background
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DPlayAnimationThread.java23 import android.animation.AnimationThread;
24 import android.animation.Animator;
38 // start the animation. This will send a message to the handler right away, so
/frameworks/base/core/java/android/animation/
H A DFloatArrayEvaluator.java17 package android.animation;
42 * {@link android.animation.ValueAnimator#getAnimatedValue()} is not cached, modified, or
H A DIntArrayEvaluator.java17 package android.animation;
42 * {@link android.animation.ValueAnimator#getAnimatedValue()} is not cached, modified, or
H A DTypeConverter.java17 package android.animation;
21 * is necessary when the value types of in animation are different
35 * Returns the target converted type. Used by the animation system to determine
/frameworks/base/services/core/java/com/android/server/policy/
H A DStatusBarController.java27 import android.view.animation.Animation;
28 import android.view.animation.AnimationSet;
29 import android.view.animation.Interpolator;
30 import android.view.animation.TranslateAnimation;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
H A DDisappearAnimationUtils.java17 package com.android.settingslib.animation;
20 import android.view.animation.AnimationUtils;
21 import android.view.animation.Interpolator;

Completed in 3668 milliseconds

1234567891011>>