HomeSort by relevance Sort by last modified time
    Searched refs:animation (Results 126 - 150 of 1354) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/java/android/view/animation/
OvershootInterpolator.java 17 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;
LayoutAnimationController.java 17 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 delays in the order in which view were adde
327 final Animation animation = mAnimation.clone(); local
    [all...]
  /frameworks/base/core/java/com/android/internal/view/animation/
HasNativeInterpolator.java 17 package com.android.internal.view.animation;
NativeInterpolatorFactoryHelper.java 17 package com.android.internal.view.animation;
  /frameworks/base/core/tests/coretests/src/android/animation/
AnimatorSetActivity.java 1 package android.animation;
FutureWaiter.java 16 package android.animation;
ObjectAnimatorEventsTest.java 16 package android.animation;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
RecentsEntrancePathInterpolator.java 19 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/
BrowserActionsFallbackMenuDialog.java 19 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/
Scale.java 18 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/
FragmentAnimationProvider.java 16 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/
AnimatorUtils.java 19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
75 void onAnimationPause(Animator animation);
77 void onAnimationResume(Animator animation);
  /packages/apps/Car/Media/src/com/android/car/media/widgets/
ViewUtils.java 3 import android.animation.Animator;
4 import android.animation.AnimatorListenerAdapter;
13 * Hides a view using a fade-out animation
16 * @param duration animation duration in milliseconds.
23 // If the view hasn't been displayed yet, just adjust visibility without animation
32 public void onAnimationEnd(Animator animation) {
39 * Shows a view using a fade-in animation
42 * @param duration animation duration in milliseconds.
49 // If the view hasn't been displayed yet, just adjust visibility without animation
58 public void onAnimationStart(Animator animation) {
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/main/impl/toolbar/
SearchBarView.java 19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
34 import com.android.dialer.animation.AnimUtils;
40 /** Search bar for {@link MainToolbar}. Mostly used to handle expand and collapse animation. */
119 animator.addUpdateListener(animation -> setMargins((Float) animation.getAnimatedValue()));
124 public void onAnimationStart(Animator animation) {
125 super.onAnimationStart(animation);
131 public void onAnimationEnd(Animator animation) {
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
InterruptibleInOutAnimator.java 19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
25 * A convenience class for two-way animations, e.g. a fadeIn/fadeOut animation.
26 * With a regular ValueAnimator, if you call reverse to show the 'out' animation, you'll get
27 * a frame-by-frame mirror of the 'in' animation -- i.e., the interpolated values will
28 * be exactly reversed. Using this class, both the 'in' and the 'out' animation use the
56 public void onAnimationEnd(Animator animation) {
71 // TODO: We don't really need to do the animation if startValue == toValue, but
72 // somehow that doesn't seem to work, possibly a quirk of the animation framewor
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/anim/
AnimatorSetBuilder.java 18 import android.animation.Animator;
19 import android.animation.AnimatorSet;
21 import android.view.animation.Interpolator;
63 public void onAnimationSuccess(Animator animation) {
RevealOutlineAnimation.java 3 import android.animation.Animator;
4 import android.animation.AnimatorListenerAdapter;
5 import android.animation.ValueAnimator;
16 * animation progresses from 0 to 1.
26 /** Returns whether elevation should be removed for the duration of the reveal animation. */
28 /** Sets the progress, from 0 to 1, of the reveal animation. */
40 public void onAnimationStart(Animator animation) {
51 public void onAnimationEnd(Animator animation) {
  /packages/apps/TV/src/com/android/tv/ui/
ViewUtils.java 19 import android.animation.Animator;
20 import android.animation.ValueAnimator;
59 public void onAnimationUpdate(ValueAnimator animation) {
60 int value = (Integer) animation.getAnimatedValue();
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
ListFlipper.java 17 package com.example.android.apis.animation;
21 import android.animation.AnimatorListenerAdapter;
22 import android.animation.Animator;
23 import android.animation.ObjectAnimator;
24 import android.view.animation.AccelerateInterpolator;
25 import android.view.animation.DecelerateInterpolator;
26 import android.view.animation.Interpolator;
39 * UI allows you to set the position of the animation. Pressing the Run button will play from
40 * the current position of the animation.
  /packages/apps/DeskClock/src/com/android/deskclock/
MoveScreensaverRunnable.java 19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
23 import android.view.animation.AccelerateInterpolator;
24 import android.view.animation.DecelerateInterpolator;
25 import android.view.animation.Interpolator;
43 /** Accelerate the hide animation. */
46 /** Decelerate the show animation. */
55 /** Tracks the currently executing animation if any; used to gracefully stop the animation. *
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
DrawableHolder.java 21 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) {
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TranslateAnimationTest.java 3 import android.view.animation.Animation;
4 import android.view.animation.TranslateAnimation;
17 private TranslateAnimation animation; field in class:TranslateAnimationTest
22 animation = new TranslateAnimation(1, 2, 3, 4, 5, 6, 7, 8);
23 shadow = shadowOf(animation);
42 int defType = Animation.ABSOLUTE;
  /frameworks/support/leanback/src/main/java/androidx/leanback/transition/
ParallaxTransition.java 21 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/
ChangeColor.java 19 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...]
  /packages/apps/Car/Hvac/src/com/android/car/hvac/ui/
TemperatureBarOverlay.java 18 import android.animation.Animator;
19 import android.animation.AnimatorSet;
20 import android.animation.ObjectAnimator;
21 import android.animation.ValueAnimator;
183 AnimatorSet animation = new AnimatorSet(); local
185 return animation;
211 animation.playTogether(list);
212 animation.addListener(mStateListener);
214 return animation;
220 AnimatorSet animation = new AnimatorSet() local
    [all...]

Completed in 1589 milliseconds

1 2 3 4 56 7 8 91011>>