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

1234567

/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;
29 * The set of listeners to be sent events through the life of an animation.
34 * Starts this animation. If the animation has a nonzero startDelay, the animation will start
35 * running after that delay elapses. A non-delayed animation will have its initial
39 * <p>The animation started by calling this method will be run on the thread that called
41 * this is not the case). Also, if the animation will animate
50 * Cancels the animation. Unlike {@link #end()}, <code>cancel()</code> causes the animation t
251 onAnimationStart(Animator animation) argument
259 onAnimationEnd(Animator animation) argument
267 onAnimationCancel(Animator animation) argument
274 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
160 * previous animation ends.
179 * previous animation ends.
207 childList.add(node.animation);
222 Animator animation = node.animation;
655 onAnimationCancel(Animator animation) argument
661 onAnimationEnd(Animator animation) argument
670 onAnimationRepeat(Animator animation) argument
676 onAnimationStart(Animator animation) argument
724 onAnimationCancel(Animator animation) argument
740 onAnimationEnd(Animator animation) argument
774 onAnimationRepeat(Animator animation) argument
778 onAnimationStart(Animator animation) argument
884 public Animator animation; field in class:AnimatorSet.Node
932 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 DFutureWaiter.java16 package android.animation;
H A DBasicAnimatorActivity.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/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.java10 import android.view.animation.Animation;
11 import android.view.animation.Transformation;
24 Animation animation; field in class:AppWindowAnimator
41 // Special surface for thumbnail animation.
63 TAG, "Setting animation in " + mAppToken + ": " + anim);
64 animation = anim;
81 // Start out animation gone if window is gone, or visible if window is visible.
88 if (WindowManagerService.localLOGV) Slog.v(TAG, "Setting dummy animation in " + mAppToken);
89 animation = sDummyAnimation;
97 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
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DPropertyValuesHolder_Delegate.java17 package android.animation;
23 * Delegate implementing the native methods of android.animation.PropertyValuesHolder

Completed in 2053 milliseconds

1234567