Searched refs:animation (Results 26 - 50 of 567) sorted by relevance

1234567891011>>

/frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
H A DFloatValueHolder.java17 package androidx.dynamicanimation.animation;
22 * be performed on a FloatValueHolder instance. During each frame of the animation, the
24 * obtain the up-to-date animation value via {@link FloatValueHolder#getValue()}.
28 * // Create a fling animation with an initial velocity of 5000 (pixel/s) and an initial position
/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...]
H A DMarqueeActivity.java23 import android.view.animation.Animation;
24 import android.view.animation.AnimationUtils;
60 Animation animation = AnimationUtils.loadAnimation(text2.getContext(),
62 animation.setFillEnabled(true);
63 animation.setFillAfter(true);
64 text2.startAnimation(animation);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DSystemBarScrimViews.java64 AnimationProps animation) {
66 if (animateNavBarScrim && animation != null) {
67 animateNavBarScrimVisibility(true, animation);
86 private void animateNavBarScrimVisibility(boolean visible, AnimationProps animation) { argument
94 if (animation != AnimationProps.IMMEDIATE) {
97 .setDuration(animation.getDuration(AnimationProps.BOUNDS))
98 .setInterpolator(animation.getInterpolator(AnimationProps.BOUNDS))
119 AnimationProps animation = mShouldAnimateNavBarScrim
124 animateNavBarScrimVisibility(true, animation);
134 AnimationProps animation
63 updateNavBarScrim(boolean animateNavBarScrim, boolean hasStackTasks, AnimationProps animation) argument
[all...]
/frameworks/support/graphics/drawable/animated/src/main/java/androidx/vectordrawable/graphics/drawable/
H A DAnimationUtilsCompat.java29 import android.view.animation.AccelerateDecelerateInterpolator;
30 import android.view.animation.AccelerateInterpolator;
31 import android.view.animation.AnimationUtils;
32 import android.view.animation.AnticipateInterpolator;
33 import android.view.animation.AnticipateOvershootInterpolator;
34 import android.view.animation.BounceInterpolator;
35 import android.view.animation.CycleInterpolator;
36 import android.view.animation.DecelerateInterpolator;
37 import android.view.animation.Interpolator;
38 import android.view.animation
[all...]
/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;
27 import android.view.animation.Animation;
28 import android.view.animation.AnimationUtils;
111 public void onAnimationStart(Animator animation) {
115 public void onAnimationRepeat(Animator animation) {
119 public void onAnimationEnd(Animator animation) {
126 public void onAnimationCancel(Animator animation) {
140 public void onAnimationStart(Animator animation) {
[all...]
/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;
40 public void onAnimationUpdate(ValueAnimator animation) {
41 updateGrayscale(target, (float) animation.getAnimatedValue());
45 public void onAnimationEnd(Animator animation) {
88 public void onAnimationEnd(Animator animation) {
93 public void onAnimationStart(Animator animation) {
94 view.setTag(DOZE_ANIMATOR_TAG, animation);
/frameworks/base/services/core/java/com/android/server/wm/animation/
H A DClipRectTBAnimation.java17 package com.android.server.wm.animation;
20 import android.view.animation.ClipRectAnimation;
21 import android.view.animation.Interpolator;
22 import android.view.animation.Transformation;
23 import android.view.animation.TranslateAnimation;
29 * animation can be specified so this animation simulates as the clip would be applied after instead
53 // Hack: Because translation animation has a different interpolator, we need to duplicate
/frameworks/base/core/java/android/animation/
H A DTimeAnimator.java17 package android.animation;
19 import android.view.animation.AnimationUtils;
25 * on every animation frame to its TimeListener (if set), with information about this animator,
26 * the total elapsed time, and the elapsed time since the previous animation frame.
60 * an animation.
80 * to a <code>TimeAnimator</code> instance to receive callbacks on every animation
89 * <p>Notifies listeners of the occurrence of another frame of the animation,
92 * @param animation The animator sending out the notification.
96 void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime); argument
H A DAnimator.java17 package android.animation;
36 * The set of listeners to be sent events through the life of an animation.
42 * of an animation.
64 * Starts this animation. If the animation has a nonzero startDelay, the animation will start
65 * running after that delay elapses. A non-delayed animation will have its initial
69 * <p>The animation started by calling this method will be run on the thread that called
71 * this is not the case). Also, if the animation will animate
80 * Cancels the animation
535 onAnimationStart(Animator animation, boolean isReverse) argument
551 onAnimationEnd(Animator animation, boolean isReverse) argument
560 onAnimationStart(Animator animation) argument
568 onAnimationEnd(Animator animation) argument
576 onAnimationCancel(Animator animation) argument
583 onAnimationRepeat(Animator animation) argument
599 onAnimationPause(Animator animation) argument
608 onAnimationResume(Animator animation) argument
[all...]
H A DKeyframes.java16 package android.animation;
22 * ValueAnimator to calculate values between those keyframes for a given animation.
43 * Gets the animated value, given the elapsed fraction of the animation (interpolated by the
44 * animation's interpolator) and the evaluator used to calculate in-between values. This
47 * outside the [0-1] bounds, if the animation's interpolator made that happen (e.g., a
51 * @param fraction The elapsed fraction of the animation
71 * @param fraction The elapsed fraction of the animation
84 * @param fraction The elapsed fraction of the animation
H A DRevealAnimator.java17 package android.animation;
/frameworks/support/compat/src/main/java/androidx/core/view/animation/
H A DPathInterpolatorCompat.java17 package androidx.core.view.animation;
21 import android.view.animation.Interpolator;
22 import android.view.animation.PathInterpolator;
/frameworks/support/interpolator/src/main/java/androidx/interpolator/view/animation/
H A DLookupTableInterpolator.java17 package androidx.interpolator.view.animation;
19 import android.view.animation.Interpolator;
/frameworks/support/leanback/src/main/java/androidx/leanback/animation/
H A DLogAccelerateInterpolator.java14 package androidx.leanback.animation;
18 import android.animation.TimeInterpolator;
H A DLogDecelerateInterpolator.java14 package androidx.leanback.animation;
18 import android.animation.TimeInterpolator;
/frameworks/base/core/java/android/view/animation/
H A DAccelerateInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
48 * @param factor Degree to which the animation should be eased. Seting
H A DAnticipateInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
H A DCycleInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
31 * Repeats the animation for a specified number of cycles. The
H A DDecelerateInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
43 * @param factor Degree to which the animation should be eased. Setting factor to 1.0f produces
H A DOvershootInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
/frameworks/base/core/java/com/android/internal/view/animation/
H A DHasNativeInterpolator.java17 package com.android.internal.view.animation;
H A DNativeInterpolatorFactoryHelper.java17 package com.android.internal.view.animation;
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAnimatorSetActivity.java1 package android.animation;
H A DFutureWaiter.java16 package android.animation;

Completed in 473 milliseconds

1234567891011>>