Searched refs:animation (Results 1 - 25 of 333) 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/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;
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 DNativeInterpolatorFactory.java17 package com.android.internal.view.animation;
/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/packages/SystemUI/src/com/android/systemui/recent/
H A DFirstFrameAnimatorHelper.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
28 * This is a helper class that listens to updates from the corresponding animation.
29 * For the first two frames, it adjusts the current play time of the animation to
30 * prevent jank at the beginning of the animation
57 public void onAnimationStart(Animator animation) { argument
58 final ValueAnimator va = (ValueAnimator) animation;
81 public void onAnimationUpdate(final ValueAnimator animation) { argument
89 // If the current play time exceeds the duration, the animation
128 print(ValueAnimator animation) argument
[all...]
/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/base/packages/Keyguard/src/com/android/keyguard/
H A DAppearAnimationCreator.java19 import android.animation.Animator;
20 import android.view.animation.Interpolator;
23 * 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/jellybean-mr2/android/support/v4/view/
H A DViewPropertyAnimatorCompatJellybeanMr2.java19 import android.view.animation.Interpolator;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DRevealActivity.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.AnimatorSet;
45 public void onAnimationStart(Animator animation) {
46 Log.d("Reveal", "onAnimatorStart " + animation);
50 public void onAnimationRepeat(Animator animation) {
51 Log.d("Reveal", "onAnimationRepeat " + animation);
55 public void onAnimationEnd(Animator animation) {
56 Log.d("Reveal", "onAnimationEnd " + animation);
60 public void onAnimationCancel(Animator animation) {
[all...]
H A DMarqueeActivity.java23 import android.view.animation.Animation;
24 import android.view.animation.AnimationUtils;
60 Animation animation = AnimationUtils.loadAnimation(text2.getContext(),
62 animation.setFillEnabled(true);
63 animation.setFillAfter(true);
64 text2.startAnimation(animation);
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DLeanbackTransitionHelperKitKat.java19 import android.view.animation.AnimationUtils;
20 import android.view.animation.DecelerateInterpolator;
21 import android.view.animation.Interpolator;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DViewInvertHelper.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
26 import android.view.animation.AnimationUtils;
27 import android.view.animation.Interpolator;
56 public void onAnimationUpdate(ValueAnimator animation) {
57 updateInvertPaint((Float) animation.getAnimatedValue());
63 public void onAnimationEnd(Animator animation) {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/animation/
H A DLogAccelerateInterpolator.java14 package android.support.v17.leanback.animation;
16 import android.animation.TimeInterpolator;

Completed in 4151 milliseconds

1234567891011>>