HomeSort by relevance Sort by last modified time
    Searched defs:animation (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /frameworks/base/core/java/android/animation/
TimeInterpolator.java 17 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
TypeEvaluator.java 17 package android.animation;
22 * custom evaulators for types that are not automatically understood and used by the animation
FloatEvaluator.java 17 package android.animation;
IntEvaluator.java 17 package android.animation;
AnimatorListenerAdapter.java 17 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) {
37 public void onAnimationEnd(Animator animation) {
44 public void onAnimationRepeat(Animator animation) {
51 public void onAnimationStart(Animator animation) {
  /frameworks/base/core/java/android/view/animation/
Interpolator.java 17 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
AccelerateDecelerateInterpolator.java 17 package android.view.animation;
LinearInterpolator.java 17 package android.view.animation;
BounceInterpolator.java 17 package android.view.animation;
AccelerateInterpolator.java 17 package android.view.animation;
40 * @param factor Degree to which the animation should be eased. Seting
AnticipateInterpolator.java 17 package android.view.animation;
AnticipateOvershootInterpolator.java 17 package android.view.animation;
CycleInterpolator.java 17 package android.view.animation;
24 * Repeats the animation for a specified number of cycles. The
DecelerateInterpolator.java 17 package android.view.animation;
35 * @param factor Degree to which the animation should be eased. Setting factor to 1.0f produces
OvershootInterpolator.java 17 package android.view.animation;
  /frameworks/base/core/tests/coretests/src/android/animation/
BasicAnimatorActivity.java 16 package android.animation;
FutureWaiter.java 16 package android.animation;
ValueAnimatorEventsTest.java 16 package android.animation;
ObjectAnimatorEventsTest.java 16 package android.animation;
  /cts/tests/src/android/view/animation/cts/
AnimationTestStubActivity.java 17 package android.view.animation.cts;
LayoutAnimStubActivity.java 17 package android.view.animation.cts;
  /cts/tests/tests/view/src/android/view/animation/cts/
AlphaAnimationTest.java 17 package android.view.animation.cts;
23 import android.view.animation.AlphaAnimation;
24 import android.view.animation.Transformation;
63 " returns false, a alpha animation will not affect the bounds",
69 AlphaAnimation animation = new AlphaAnimation(mContext, null); local
70 assertFalse(animation.willChangeBounds());
76 " always returns false, a alpha animation will not affect the matrix",
81 AlphaAnimation animation = new AlphaAnimation(0.0f, 0.5f); local
82 assertFalse(animation.willChangeTransformationMatrix());
89 args = {float.class, android.view.animation.Transformation.class
92 MyAlphaAnimation animation = new MyAlphaAnimation(0.0f, 1.0f); local
    [all...]
GridLayoutAnimationController_AnimationParametersTest.java 17 package android.view.animation.cts;
24 import android.view.animation.GridLayoutAnimationController;
25 import android.view.animation.GridLayoutAnimationController.AnimationParameters;
LayoutAnimationController_AnimationParametersTest.java 17 package android.view.animation.cts;
24 import android.view.animation.LayoutAnimationController;
  /frameworks/base/tools/layoutlib/bridge/src/android/animation/
PropertyValuesHolder_Delegate.java 17 package android.animation;
23 * Delegate implementing the native methods of android.animation.PropertyValuesHolder

Completed in 2061 milliseconds

1 2 3 4 5