Searched refs:animation (Results 1 - 25 of 200) sorted by relevance

12345678

/frameworks/base/core/java/android/view/animation/
H A DInterpolator.java17 package android.view.animation;
19 import android.animation.TimeInterpolator;
22 * An interpolator defines the rate of change of an animation. This allows
23 * the basic animation effects (alpha, scale, translate, rotate) to be
27 // A new interface, TimeInterpolator, was introduced for the new android.animation
H A DLinearInterpolator.java17 package android.view.animation;
H A DAccelerateDecelerateInterpolator.java17 package android.view.animation;
H A DLayoutAnimationController.java17 package android.view.animation;
28 * A layout animation controller is used to animated a layout's, or a view
29 * group's, children. Each child uses the same animation but for every one of
30 * them, the animation starts at a different time. A layout animation controller
32 * child's animation start must be offset. The delay is computed by using
40 * {@link android.view.animation.GridLayoutAnimationController} will compute the
44 * Information used to compute the animation delay of each child are stored
46 * {@link android.view.animation.LayoutAnimationController.AnimationParameters},
56 * Distributes the animation delay
131 LayoutAnimationController(Animation animation) argument
142 LayoutAnimationController(Animation animation, float delay) argument
198 setAnimation(Animation animation) argument
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorListenerAdapter.java17 package android.animation;
20 * This adapter class provides empty implementations of the methods from {@link android.animation.Animator.AnimatorListener}.
31 public void onAnimationCancel(Animator animation) { argument
38 public void onAnimationEnd(Animator animation) { argument
45 public void onAnimationRepeat(Animator animation) { argument
52 public void onAnimationStart(Animator animation) { argument
59 public void onAnimationPause(Animator animation) { argument
66 public void onAnimationResume(Animator animation) { argument
H A DTimeInterpolator.java17 package android.animation;
20 * A time interpolator defines the rate of change of an animation. This allows animations
26 * Maps a value representing the elapsed fraction of an animation to a value that represents
28 * value of an animation to derive the animated value at the current elapsed animation time.
31 * in the animation where 0 represents the start and 1.0 represents
H A DTypeEvaluator.java17 package android.animation;
22 * custom evaluators for types that are not automatically understood and used by the animation
H A DFloatEvaluator.java17 package android.animation;
H A DIntEvaluator.java17 package android.animation;
H A DAnimatorSet.java17 package android.animation;
37 * its animations. For example, an animation a1 could be set up to start before animation a2, a2
46 * <a href="{@docRoot}guide/topics/graphics/prop-animation.html#choreography">Property
111 // The amount of time in ms to delay starting the animation after start() is called
170 * previous animation ends.
189 * previous animation ends.
217 childList.add(node.animation);
232 Animator animation = node.animation;
708 onAnimationCancel(Animator animation) argument
714 onAnimationEnd(Animator animation) argument
723 onAnimationRepeat(Animator animation) argument
729 onAnimationStart(Animator animation) argument
777 onAnimationCancel(Animator animation) argument
793 onAnimationEnd(Animator animation) argument
828 onAnimationRepeat(Animator animation) argument
832 onAnimationStart(Animator animation) argument
938 public Animator animation; field in class:AnimatorSet.Node
986 Node(Animator animation) argument
[all...]
H A DTimeAnimator.java1 package android.animation;
7 * on every animation frame to its TimeListener (if set), with information about this animator,
8 * the total elapsed time, and the elapsed time since the previous animation frame.
34 * an animation.
54 * to a <code>TimeAnimator</code> instance to receive callbacks on every animation
63 * <p>Notifies listeners of the occurrence of another frame of the animation,
66 * @param animation The animator sending out the notification.
70 void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DFirstFrameAnimatorHelper.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
28 * This is a helper class that listens to updates from the corresponding animation.
29 * For the first two frames, it adjusts the current play time of the animation to
30 * prevent jank at the beginning of the animation
57 public void onAnimationStart(Animator animation) { argument
58 final ValueAnimator va = (ValueAnimator) animation;
81 public void onAnimationUpdate(final ValueAnimator animation) { argument
89 // If the current play time exceeds the duration, the animation
128 print(ValueAnimator animation) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/animation/
H A DValueAnimatorEventsTest.java16 package android.animation;
H A DBasicAnimatorActivity.java16 package android.animation;
H A DFutureWaiter.java16 package android.animation;
H A DObjectAnimatorEventsTest.java16 package android.animation;
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListWithDisappearingItemBug.java25 import android.view.animation.AlphaAnimation;
26 import android.view.animation.Animation;
27 import android.view.animation.AnimationSet;
28 import android.view.animation.LayoutAnimationController;
29 import android.view.animation.TranslateAnimation;
63 Animation animation = new AlphaAnimation(0.0f, 1.0f);
64 animation.setDuration(50);
65 set.addAnimation(animation);
67 animation = new TranslateAnimation(
71 animation
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
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/core/java/android/transition/
H A DSlide.java19 import android.animation.Animator;
20 import android.animation.ObjectAnimator;
21 import android.animation.TimeInterpolator;
24 import android.view.animation.AccelerateInterpolator;
25 import android.view.animation.DecelerateInterpolator;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardGlowStripView.java18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.ValueAnimator;
21 import android.animation.ValueAnimator.AnimatorUpdateListener;
27 import android.view.animation.DecelerateInterpolator;
28 import android.view.animation.Interpolator;
29 import android.view.animation.LinearInterpolator;
117 public void onAnimationEnd(Animator animation) {
124 public void onAnimationStart(Animator animation) {
130 public void onAnimationUpdate(ValueAnimator animation) {
[all...]
H A DKeyguardSecurityViewHelper.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
42 public void onAnimationCancel(Animator animation) {
48 public void onAnimationEnd(Animator animation) {
/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/base/services/java/com/android/server/wm/
H A DAppWindowAnimator.java11 import android.view.animation.Animation;
12 import android.view.animation.Transformation;
25 Animation animation; field in class:AppWindowAnimator
46 // Special surface for thumbnail animation.
67 if (WindowManagerService.localLOGV) Slog.v(TAG, "Setting animation in " + mAppToken
70 animation = anim;
89 // Start out animation gone if window is gone, or visible if window is visible.
96 if (WindowManagerService.localLOGV) Slog.v(TAG, "Setting dummy animation in " + mAppToken
98 animation = sDummyAnimation;
105 if (animation !
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCase.java19 import android.animation.ObjectAnimator;
25 import android.view.animation.DecelerateInterpolator;
/frameworks/base/tools/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

Completed in 441 milliseconds

12345678