Searched defs:animation (Results 1 - 25 of 63) sorted by relevance

123

/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 DAccelerateDecelerateInterpolator.java17 package android.view.animation;
H A DAnticipateInterpolator.java17 package android.view.animation;
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 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 DLinearInterpolator.java17 package android.view.animation;
H A DOvershootInterpolator.java17 package android.view.animation;
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 DAnticipateOvershootInterpolator.java17 package android.view.animation;
/frameworks/base/core/tests/coretests/src/android/animation/
H A DObjectAnimatorEventsTest.java16 package 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 DAnimatorSetEventsTest.java16 package android.animation;
/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}.
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 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 DArgbEvaluator.java17 package android.animation;
H A DFloatEvaluator.java17 package android.animation;
H A DIntEvaluator.java17 package android.animation;
H A DTypeEvaluator.java17 package android.animation;
22 * custom evaulators for types that are not automatically understood and used by the animation
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
H A DFloatKeyframeSet.java17 package android.animation;
19 import android.animation.Keyframe.FloatKeyframe;
25 * values between those keyframes for a given animation. The class internal to the animation
30 * TypeEvaluator set for the animation, so that values can be calculated without autoboxing to the
H A DIntKeyframeSet.java17 package android.animation;
19 import android.animation.Keyframe.IntKeyframe;
25 * values between those keyframes for a given animation. The class internal to the animation
30 * TypeEvaluator set for the animation, so that values can be calculated without autoboxing to the

Completed in 840 milliseconds

123