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

1234567891011>>

/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 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;
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;
/frameworks/support/v4/donut/android/support/v4/animation/
H A DAnimatorUpdateListenerCompat.java17 package android.support.v4.animation;
21 * to a <code>ValueAnimator</code> instance to receive callbacks on every animation
30 * <p>Notifies the occurrence of another frame of the animation.</p>
32 * @param animation The animation which was repeated.
34 void onAnimationUpdate(ValueAnimatorCompat animation); argument
H A DAnimatorListenerCompat.java17 package android.support.v4.animation;
20 * <p>An animation listener that receives notifications from an animation.
21 * Notifications indicate animation related events, such as the end or the
22 * repetition of the animation.</p>
29 * <p>Notifies the start of the animation.</p>
31 * @param animation The started animation.
33 void onAnimationStart(ValueAnimatorCompat animation); argument
36 * <p>Notifies the end of the animation
41 onAnimationEnd(ValueAnimatorCompat animation) argument
49 onAnimationCancel(ValueAnimatorCompat animation) argument
56 onAnimationRepeat(ValueAnimatorCompat animation) argument
[all...]
H A DAnimatorProvider.java17 package android.support.v4.animation;
22 * A simple interface to do things in animation pulse.
24 * Before Honeycomb, it uses a simple Handler to mimic animation callback.
/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 DTypeEvaluator.java17 package android.animation;
22 * custom evaluators 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;
/frameworks/base/core/java/com/android/internal/view/animation/
H A DNativeInterpolatorFactory.java17 package com.android.internal.view.animation;
/frameworks/support/design/base/android/support/design/widget/
H A DAnimationUtils.java19 import android.support.v4.view.animation.FastOutSlowInInterpolator;
20 import android.view.animation.Animation;
21 import android.view.animation.DecelerateInterpolator;
22 import android.view.animation.Interpolator;
23 import android.view.animation.LinearInterpolator;
44 public void onAnimationStart(Animation animation) { argument
48 public void onAnimationEnd(Animation animation) { argument
52 public void onAnimationRepeat(Animation animation) { argument
/frameworks/base/core/java/android/view/
H A DViewAnimationUtils.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.RevealAnimator;
35 * Views clipped by a circular reveal animation take priority over
38 * Note that the animation returned here is a one-shot animation. It cannot
40 * an asynchronous animation that automatically runs off of the UI thread.
42 * will occur after the animation has ended, but it may be delayed depending
/frameworks/base/core/tests/coretests/src/android/animation/
H A DValueAnimatorEventsTest.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/support/v4/honeycomb_mr1/android/support/v4/animation/
H A DHoneycombMr1AnimatorCompatProvider.java17 package android.support.v4.animation;
19 import android.animation.Animator;
20 import android.animation.PropertyValuesHolder;
21 import android.animation.TimeInterpolator;
22 import android.animation.TypeEvaluator;
23 import android.animation.ValueAnimator;
81 public void onAnimationUpdate(ValueAnimator animation) {
108 public void onAnimationStart(Animator animation) { argument
113 public void onAnimationEnd(Animator animation) { argument
118 public void onAnimationCancel(Animator animation) { argument
123 onAnimationRepeat(Animator animation) argument
[all...]
/frameworks/base/core/java/com/android/internal/transition/
H A DTransitionConstants.java18 import android.animation.TimeInterpolator;
19 import android.view.animation.PathInterpolator;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
H A DAppearAnimationCreator.java17 package com.android.settingslib.animation;
19 import android.view.animation.Interpolator;
22 * An interface which can create animations when starting an appear animation with
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DIconPulser.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
23 import android.view.animation.AnimationUtils;
24 import android.view.animation.Interpolator;
43 public void onAnimationEnd(Animator animation) {
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DViewPropertyAnimatorCompatJB.java18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
41 public void onAnimationCancel(Animator animation) {
46 public void onAnimationEnd(Animator animation) {
51 public void onAnimationStart(Animator animation) {
/frameworks/support/v4/api21/android/support/v4/view/animation/
H A DPathInterpolatorCompatApi21.java17 package android.support.v4.view.animation;
20 import android.view.animation.Interpolator;
21 import android.view.animation.PathInterpolator;
/frameworks/support/v4/jellybean-mr2/android/support/v4/view/
H A DViewPropertyAnimatorCompatJellybeanMr2.java19 import android.view.animation.Interpolator;

Completed in 6012 milliseconds

1234567891011>>