Searched refs:animation (Results 226 - 250 of 424) sorted by relevance

1234567891011>>

/frameworks/support/design/src/android/support/design/widget/
H A DSnackbar.java42 import android.view.animation.Animation;
43 import android.view.animation.AnimationUtils;
554 public void onAnimationEnd(Animation animation) {
559 public void onAnimationStart(Animation animation) {}
562 public void onAnimationRepeat(Animation animation) {}
592 public void onAnimationEnd(Animation animation) {
597 public void onAnimationStart(Animation animation) {}
600 public void onAnimationRepeat(Animation animation) {}
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGuidanceStylist.java16 import android.animation.Animator;
17 import android.animation.AnimatorInflater;
H A DSearchOrbView.java19 import android.animation.ArgbEvaluator;
20 import android.animation.ValueAnimator;
78 * @param brightColor A brighter version of the search orb used for animation.
88 * @param brightColor A brighter version of the search orb used for animation.
104 * A brighter version of the search orb used for animation.
144 public void onAnimationUpdate(ValueAnimator animation) {
145 setSearchOrbZ(animation.getAnimatedFraction());
333 * Enables or disables the orb color animation.
336 * Orb color animation is handled automatically when the orb is focused/unfocused,
337 * however, an app may choose to override the current animation stat
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
H A DItemTouchHelper.java24 import android.support.v4.animation.AnimatorCompatHelper;
25 import android.support.v4.animation.AnimatorListenerCompat;
26 import android.support.v4.animation.AnimatorUpdateListenerCompat;
27 import android.support.v4.animation.ValueAnimatorCompat;
45 import android.view.animation.Interpolator;
285 * until view reaches its final position (end of recover animation), we keep a reference so
317 final RecoverAnimation animation = findAnimation(event);
318 if (animation != null) {
319 mInitialTouchX -= animation.mX;
320 mInitialTouchY -= animation
2386 onAnimationStart(ValueAnimatorCompat animation) argument
2391 onAnimationEnd(ValueAnimatorCompat animation) argument
2399 onAnimationCancel(ValueAnimatorCompat animation) argument
2404 onAnimationRepeat(ValueAnimatorCompat animation) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DZoomControls.java25 import android.view.animation.AlphaAnimation;
H A DEdgeEffect.java28 import android.view.animation.AnimationUtils;
29 import android.view.animation.DecelerateInterpolator;
30 import android.view.animation.Interpolator;
41 * false after drawing, the edge effect's animation is not yet complete and the widget
42 * should schedule another drawing pass to continue the animation.</p>
152 * Reports if this EdgeEffect's animation is finished. If this method returns false
154 * drawing pass to continue the animation.
156 * @return true if animation is finished, false if drawing should continue on the next frame.
163 * Immediately finish the current animation.
172 * This will update the state of the current visual effect and its associated animation
[all...]
/frameworks/base/core/tests/coretests/src/android/view/
H A DVelocityTest.java24 import android.view.animation.AccelerateInterpolator;
25 import android.view.animation.DecelerateInterpolator;
26 import android.view.animation.Interpolator;
27 import android.view.animation.LinearInterpolator;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSContainer.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
279 public void onAnimationEnd(Animator animation) {
308 public void onAnimationEnd(Animator animation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStackScrollerDecorView.java22 import android.view.animation.Interpolator;
74 * @param onFinishedRunnable A runnable which should be run when the animation is
H A DFlingAnimationUtils.java19 import android.animation.Animator;
22 import android.view.animation.Interpolator;
23 import android.view.animation.PathInterpolator;
28 * Utility class to calculate general fling animation when the finger is released.
62 * Applies the interpolator and length to the animator, such that the fling animation is
75 * Applies the interpolator and length to the animator, such that the fling animation is
89 * Applies the interpolator and length to the animator, such that the fling animation is
96 * @param maxDistance the maximum distance for this interaction; the maximum animation length
108 * Applies the interpolator and length to the animator, such that the fling animation is
115 * @param maxDistance the maximum distance for this interaction; the maximum animation lengt
[all...]
/frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
H A DFadeAndShortSlide.java18 import android.animation.Animator;
19 import android.animation.AnimatorSet;
20 import android.animation.TimeInterpolator;
33 import android.view.animation.DecelerateInterpolator;
220 // workaround b/25375640, avoid run animation on sceneRoot
251 // workaround b/25375640, avoid run animation on sceneRoot
/frameworks/support/v4/donut/android/support/v4/animation/
H A DDonutAnimatorCompatProvider.java17 package android.support.v4.animation;
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DViewPropertyAnimatorCompatSet.java23 import android.view.animation.Interpolator;
/frameworks/base/core/java/android/transition/
H A DChangeImageTransform.java18 import android.animation.Animator;
19 import android.animation.ObjectAnimator;
20 import android.animation.TypeEvaluator;
H A DTransitionUtils.java19 import android.animation.Animator;
20 import android.animation.AnimatorSet;
21 import android.animation.TypeEvaluator;
/frameworks/base/core/java/com/android/internal/app/
H A DPlatLogoActivity.java19 import android.animation.Animator;
20 import android.animation.ObjectAnimator;
51 import android.view.animation.PathInterpolator;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationTemplateViewWrapper.java19 import android.animation.ValueAnimator;
191 public void onAnimationUpdate(ValueAnimator animation) {
192 float t = (float) animation.getAnimatedValue();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLockIcon.java147 final AnimatedVectorDrawable animation = icon instanceof AnimatedVectorDrawable
170 if (animation != null && isAnim) {
171 animation.start();
225 // If screen is off and device asleep, use the draw on animation so the first frame
/frameworks/base/services/core/java/com/android/server/policy/
H A DBurnInProtectionHelper.java19 import android.animation.Animator;
20 import android.animation.ValueAnimator;
32 import android.view.animation.LinearInterpolator;
268 // No matter how the animation finishes, we want to zero the offsets.
/frameworks/support/v4/java/android/support/v4/widget/
H A DSwipeProgressBar.java24 import android.support.v4.view.animation.FastOutSlowInInterpolator;
26 import android.view.animation.AnimationUtils;
27 import android.view.animation.Interpolator;
39 // Default progress animation colors are grays.
45 // The duration of the animation cycle.
48 // The duration of the animation to clear the bar.
51 // Interpolator for varying the speed of the animation.
61 // Colors used when rendering the animation,
79 * Set the four colors used in the progress animation. The first color will
108 * Start showing the progress animation
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
50 import android.view.animation.AnimationUtils;
51 import android.view.animation.Interpolator;
86 * if the animating mode is set. The entire animation should take this
107 * progress animation.
114 * - during animation: the current tip of the animating line
455 public void onAnimationUpdate(ValueAnimator animation) {
456 float t = (float) animation
[all...]
H A DSlidingTab.java34 import android.view.animation.AlphaAnimation;
35 import android.view.animation.Animation;
36 import android.view.animation.LinearInterpolator;
37 import android.view.animation.TranslateAnimation;
38 import android.view.animation.Animation.AnimationListener;
96 * Listener used to reset the view when the current animation completes.
99 public void onAnimationStart(Animation animation) {
103 public void onAnimationRepeat(Animation animation) {
107 public void onAnimationEnd(Animation animation) {
563 * Reset the tabs to their original state and stop any existing animation
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardPatternView.java29 import android.view.animation.AnimationUtils;
30 import android.view.animation.Interpolator;
36 import com.android.settingslib.animation.AppearAnimationCreator;
37 import com.android.settingslib.animation.AppearAnimationUtils;
38 import com.android.settingslib.animation.DisappearAnimationUtils;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java17 import android.animation.Animator;
18 import android.animation.AnimatorInflater;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.AnimatorSet;
21 import android.animation.Animator.AnimatorListener;
22 import android.animation.PropertyValuesHolder;
23 import android.animation.TimeInterpolator;
24 import android.animation.ValueAnimator;
25 import android.animation.ObjectAnimator;
67 * This class uses {@link android.animation
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
40 import android.view.animation.AccelerateInterpolator;
41 import android.view.animation.AnticipateOvershootInterpolator;
42 import android.view.animation.DecelerateInterpolator;

Completed in 5299 milliseconds

1234567891011>>