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

12

/frameworks/base/core/java/android/view/animation/
H A DInterpolator.java17 package android.view.animation;
20 * An interpolator defines the rate of change of an animation. This allows
21 * the basic animation effects (alpha, scale, translate, rotate) to be
28 * transformations of an animation.
31 * in the animation where 0 represents the start and 1.0 represents
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...]
H A DBounceInterpolator.java17 package android.view.animation;
H A DCycleInterpolator.java17 package android.view.animation;
24 * Repeats the animation for a specified number of cycles. The
H A DAccelerateInterpolator.java17 package android.view.animation;
40 * @param factor Degree to which the animation should be eased. Seting
H A DAlphaAnimation.java17 package android.view.animation;
24 * An animation that controls the alpha level of an object.
25 * Useful for fading things in and out. This animation ends up
54 * @param fromAlpha Starting alpha value for the animation, where 1.0 means
56 * @param toAlpha Ending alpha value for the animation.
H A DAnticipateInterpolator.java17 package android.view.animation;
H A DDecelerateInterpolator.java17 package android.view.animation;
35 * @param factor Degree to which the animation should be eased. Setting factor to 1.0f produces
H A DOvershootInterpolator.java17 package android.view.animation;
H A DAnimation.java17 package android.view.animation;
27 * other objects. See the {@link android.view.animation animation package
32 * Repeat the animation indefinitely.
37 * When the animation reaches the end and the repeat count is INFINTE_REPEAT
38 * or a positive value, the animation restarts from the beginning.
43 * When the animation reaches the end and the repeat count is INFINTE_REPEAT
44 * or a positive value, the animation plays backward (and then forward again).
51 * first animation frame. This can is useful for short animations.
80 * content for the duration of the animation
987 onAnimationStart(Animation animation) argument
995 onAnimationEnd(Animation animation) argument
1002 onAnimationRepeat(Animation animation) argument
[all...]
H A DGridLayoutAnimationController.java17 package android.view.animation;
28 * A layout animation controller is used to animated a grid layout's children.
31 * in the view group to compute the animation delay, this class uses both the
34 * In addition, the animation direction can be controlled. The default direction
36 * also set the animation priority to columns or rows. The default priority is
39 * Information used to compute the animation delay of each child are stored
41 * {@link android.view.animation.GridLayoutAnimationController.AnimationParameters},
105 * Creates a new grid layout animation controller from external resources.
110 * layout animation controller
134 * Creates a new layout animation controlle
139 GridLayoutAnimationController(Animation animation) argument
151 GridLayoutAnimationController(Animation animation, float columnDelay, float rowDelay) argument
[all...]
H A DAnimationSet.java17 package android.view.animation;
29 * The transformation of each individual animation are composed
80 * Pass false if each animation should use its own interpolator.
89 final AnimationSet animation = (AnimationSet) super.clone();
90 animation.mTempTransformation = new Transformation();
91 animation.mAnimations = new ArrayList<Animation>();
97 animation.mAnimations.add(animations.get(i).clone());
100 return animation;
141 * <p>Sets the duration of every child animation.</p>
143 * @param durationMillis the duration of the animation, i
[all...]
H A DAnticipateOvershootInterpolator.java17 package android.view.animation;
H A DTransformation.java17 package android.view.animation;
H A DRotateAnimation.java17 package android.view.animation;
24 * An animation that controls the rotation of an object. This rotation takes
76 * animation.
78 * @param toDegrees Rotation offset to apply at the end of the animation.
91 * animation.
93 * @param toDegrees Rotation offset to apply at the end of the animation.
116 * animation.
118 * @param toDegrees Rotation offset to apply at the end of the 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/cmds/bootanimation/
H A DBootAnimation.cpp360 Animation animation; local
372 animation.width = width;
373 animation.height = height;
374 animation.fps = fps;
382 animation.parts.add(part);
388 const size_t pcount = animation.parts.size();
398 if (path == animation.parts[j].path) {
408 Animation::Part& part(animation.parts.editItemAt(j));
436 const int xc = (mWidth - animation.width) / 2;
437 const int yc = ((mHeight - animation
[all...]
/frameworks/base/core/java/android/widget/
H A DViewAnimator.java25 import android.view.animation.Animation;
26 import android.view.animation.AnimationUtils;
132 * with the {@link #getOutAnimation() out animation} and the specified child
133 * enters the screen with the {@link #getInAnimation() in animation}.
230 * Returns the current animation used to animate a View that enters the screen.
234 * @see #setInAnimation(android.view.animation.Animation)
242 * Specifies the animation used to animate a View that enters the screen.
244 * @param inAnimation The animation started when a View enters the screen.
254 * Returns the current animation used to animate a View that exits the screen.
258 * @see #setOutAnimation(android.view.animation
[all...]
H A DZoomControls.java25 import android.view.animation.AlphaAnimation;
H A DEdgeGlow.java21 import android.view.animation.AnimationUtils;
22 import android.view.animation.DecelerateInterpolator;
23 import android.view.animation.Interpolator;
242 * animation
H A DProgressBar.java44 import android.view.animation.AlphaAnimation;
45 import android.view.animation.Animation;
46 import android.view.animation.AnimationUtils;
47 import android.view.animation.Interpolator;
48 import android.view.animation.LinearInterpolator;
49 import android.view.animation.Transformation;
67 * progress bar shows a cyclic animation. This mode is used by applications
287 * Convert a AnimationDrawable for use as a barberpole animation.
288 * Each frame of the animation is wrapped in a ClipDrawable and
316 * <li>animation duratio
[all...]
/frameworks/base/core/tests/coretests/src/android/view/
H A DVelocityTest.java25 import android.view.animation.AccelerateInterpolator;
26 import android.view.animation.DecelerateInterpolator;
27 import android.view.animation.Interpolator;
28 import android.view.animation.LinearInterpolator;
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java33 import android.view.animation.AlphaAnimation;
34 import android.view.animation.Animation;
35 import android.view.animation.LinearInterpolator;
36 import android.view.animation.TranslateAnimation;
37 import android.view.animation.Animation.AnimationListener;
89 * Listener used to reset the view when the current animation completes.
92 public void onAnimationStart(Animation animation) {
96 public void onAnimationRepeat(Animation animation) {
100 public void onAnimationEnd(Animation animation) {
551 * Reset the tabs to their original state and stop any existing animation
[all...]

Completed in 201 milliseconds

12