Searched refs:animation (Results 1 - 25 of 184) 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 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 DAnimatorListenerAdapter.java17 package android.animation;
20 * This adapter class provides empty implementations of the methods from {@link android.animation.Animator.AnimatorListener}.
30 public void onAnimationCancel(Animator animation) { argument
37 public void onAnimationEnd(Animator animation) { argument
44 public void onAnimationRepeat(Animator animation) { argument
51 public void onAnimationStart(Animator animation) { argument
H A DTypeEvaluator.java17 package android.animation;
22 * custom evaulators 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 DAnimator.java17 package android.animation;
28 * The set of listeners to be sent events through the life of an animation.
33 * Starts this animation. If the animation has a nonzero startDelay, the animation will start
34 * running after that delay elapses. A non-delayed animation will have its initial
38 * <p>The animation started by calling this method will be run on the thread that called
40 * this is not the case). Also, if the animation will animate
49 * Cancels the animation. Unlike {@link #end()}, <code>cancel()</code> causes the animation t
258 onAnimationStart(Animator animation) argument
266 onAnimationEnd(Animator animation) argument
274 onAnimationCancel(Animator animation) argument
281 onAnimationRepeat(Animator animation) argument
[all...]
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;
676 onAnimationCancel(Animator animation) argument
682 onAnimationEnd(Animator animation) argument
691 onAnimationRepeat(Animator animation) argument
697 onAnimationStart(Animator animation) argument
745 onAnimationCancel(Animator animation) argument
761 onAnimationEnd(Animator animation) argument
795 onAnimationRepeat(Animator animation) argument
799 onAnimationStart(Animator animation) argument
905 public Animator animation; field in class:AnimatorSet.Node
953 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/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/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;
22 import android.animation.Animator.AnimatorListener;
29 * This is a helper class that listens to updates from the corresponding animation.
30 * For the first two frames, it adjusts the current play time of the animation to
31 * prevent jank at the beginning of the animation
54 public void onAnimationStart (Animator animation) {
55 final ValueAnimator va = (ValueAnimator) animation;
80 public void onAnimationUpdate(final ValueAnimator animation) { argument
123 print(ValueAnimator animation) argument
[all...]
/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/policy/src/com/android/internal/policy/impl/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;
119 public void onAnimationEnd(Animator animation) {
126 public void onAnimationStart(Animator animation) {
132 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/support/v4/honeycomb/android/support/v4/view/
H A DViewCompatHC.java19 import android.animation.ValueAnimator;
/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.java12 import android.view.animation.Animation;
13 import android.view.animation.Transformation;
26 Animation animation; field in class:AppWindowAnimator
47 // Special surface for thumbnail animation.
68 if (WindowManagerService.localLOGV) Slog.v(TAG, "Setting animation in " + mAppToken
71 animation = anim;
90 // Start out animation gone if window is gone, or visible if window is visible.
97 if (WindowManagerService.localLOGV) Slog.v(TAG, "Setting dummy animation in " + mAppToken
99 animation = sDummyAnimation;
106 if (animation !
[all...]
/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 588 milliseconds

12345678