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

12345

/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;
22 import com.android.internal.view.animation.HasNativeInterpolator;
23 import com.android.internal.view.animation.NativeInterpolatorFactory;
24 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
H A DBaseInterpolator.java17 package android.view.animation;
H A DBounceInterpolator.java17 package android.view.animation;
22 import com.android.internal.view.animation.HasNativeInterpolator;
23 import com.android.internal.view.animation.NativeInterpolatorFactory;
24 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
H A DLinearInterpolator.java17 package android.view.animation;
22 import com.android.internal.view.animation.HasNativeInterpolator;
23 import com.android.internal.view.animation.NativeInterpolatorFactory;
24 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
/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 DStateListAnimatorTest.java18 package android.animation;
H A DAnimatorInflaterTest.java16 package android.animation;
H A DFutureWaiter.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}.
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 DFloatEvaluator.java17 package android.animation;
H A DIntEvaluator.java17 package android.animation;
H A DTypeEvaluator.java17 package android.animation;
22 * custom evaluators for types that are not automatically understood and used by the animation
H A DArgbEvaluator.java17 package android.animation;
H A DFloatArrayEvaluator.java17 package android.animation;
42 * {@link android.animation.ValueAnimator#getAnimatedValue()} is not cached, modified, or
H A DIntArrayEvaluator.java17 package android.animation;
42 * {@link android.animation.ValueAnimator#getAnimatedValue()} is not cached, modified, or
H A DPointFEvaluator.java16 package android.animation;
H A DRectEvaluator.java16 package android.animation;
H A DRevealAnimator.java17 package android.animation;
H A DTimeAnimator.java17 package android.animation;
19 import android.view.animation.AnimationUtils;
25 * on every animation frame to its TimeListener (if set), with information about this animator,
26 * the total elapsed time, and the elapsed time since the previous animation frame.
59 * an animation.
79 * to a <code>TimeAnimator</code> instance to receive callbacks on every animation
88 * <p>Notifies listeners of the occurrence of another frame of the animation,
91 * @param animation The animator sending out the notification.
95 void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime); argument
/frameworks/base/core/java/com/android/internal/view/animation/
H A DHasNativeInterpolator.java17 package com.android.internal.view.animation;
H A DNativeInterpolatorFactory.java17 package com.android.internal.view.animation;

Completed in 147 milliseconds

12345