Searched refs:animation (Results 126 - 150 of 424) sorted by relevance

1234567891011>>

/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java26 import android.animation.Animator;
27 import android.animation.AnimatorSet;
28 import android.animation.ObjectAnimator;
29 import android.animation.TimeInterpolator;
36 import android.view.animation.DecelerateInterpolator;
342 public void onAnimationStart(Animator animation) { argument
344 mVisibilityAnim = animation;
349 public void onAnimationEnd(Animator animation) { argument
360 public void onAnimationCancel(Animator animation) { argument
365 public void onAnimationRepeat(Animator animation) { argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationHeaderViewWrapper.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
198 public void onAnimationUpdate(ValueAnimator animation) {
199 updateIconColorFilter(target, (Float) animation.getAnimatedValue());
207 public void onAnimationUpdate(ValueAnimator animation) {
208 float t = (float) animation.getAnimatedValue();
217 public void onAnimationUpdate(ValueAnimator animation) {
218 updateGrayscaleMatrix((float) animation.getAnimatedValue());
223 public void onAnimationEnd(Animator animation) {
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DStackStateAnimator.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
22 import android.animation.PropertyValuesHolder;
23 import android.animation.ValueAnimator;
26 import android.view.animation.Interpolator;
133 // no child has preformed any animation, lets finish
143 * Determines if a view should not perform an animation and applies it directly.
145 * @return true if no animation should be performed
153 // A Y translation animation i
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewScroller.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
43 void onStackScrollChanged(float prevScroll, float curScroll, AnimationProps animation); argument
123 * Sets the current stack scroll, but indicates to the callback the preferred animation to
126 public void setStackScroll(float newScroll, AnimationProps animation) { argument
130 mCb.onStackScrollChanged(prevScroll, mStackScrollP, animation);
195 // Start a new scroll animation
225 public void onAnimationEnd(Animator animation) {
H A DAnimationProps.java19 import android.animation.Animator;
20 import android.animation.AnimatorSet;
21 import android.animation.ValueAnimator;
26 import android.view.animation.Interpolator;
35 * The generic set of animation properties to animate a {@link View}. The animation can have
68 * Creates an animation with a default {@param duration} and {@param interpolator} for all
69 * properties in this animation.
76 * Creates an animation with a default {@param duration} and {@param interpolator} for all
77 * properties in this animation
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDragDownHelper.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
22 import android.animation.ValueAnimator;
193 public void onAnimationEnd(Animator animation) {
206 public void onAnimationUpdate(ValueAnimator animation) {
207 mDragDownCallback.setEmptyDragAmount((Float) animation.getAnimatedValue());
H A DScrimView.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
31 import android.view.animation.Interpolator;
49 public void onAnimationUpdate(ValueAnimator animation) {
50 mViewAlpha = (float) animation.getAnimatedValue();
56 public void onAnimationEnd(Animator animation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeScrimController.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
26 import android.view.animation.Interpolator;
178 public void onAnimationUpdate(ValueAnimator animation) {
179 float value = (float) animation.getAnimatedValue();
187 public void onAnimationEnd(Animator animation) {
H A DPhoneStatusBarTransitions.java19 import android.animation.Animator;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
H A DAppearAnimationUtils.java17 package com.android.settingslib.animation;
19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
22 import android.animation.ValueAnimator;
27 import android.view.animation.AnimationUtils;
28 import android.view.animation.Interpolator;
206 public void onAnimationEnd(Animator animation) {
214 public void onAnimationEnd(Animator animation) {
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DSlideKitkat.java18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
22 import android.animation.TimeInterpolator;
23 import android.animation.ValueAnimator;
33 import android.view.animation.AccelerateInterpolator;
34 import android.view.animation.AnimationUtils;
35 import android.view.animation.DecelerateInterpolator;
/frameworks/base/core/java/android/transition/
H A DChangeClipBounds.java18 import android.animation.Animator;
19 import android.animation.ObjectAnimator;
20 import android.animation.RectEvaluator;
88 return null; // No animation required since there is no clip.
H A DChangeScroll.java19 import android.animation.Animator;
20 import android.animation.ObjectAnimator;
/frameworks/base/core/java/android/animation/
H A DArgbEvaluator.java17 package android.animation;
H A DBidirectionalTypeConverter.java16 package android.animation;
20 * is necessary when the value types of in animation are different from the property
22 * animation is supplied to animators.
35 * values will need to be read for an animation.
H A DRectEvaluator.java16 package android.animation;
H A DStateListAnimator.java17 package android.animation;
66 public void onAnimationEnd(Animator animation) {
67 animation.setTarget(null);
68 if (mRunningAnimator == animation) {
90 * Returns the current {@link android.animation.Animator} which is started because of a state
206 * If there is an animation running for a recent state change, ends it.
208 * This causes the animation to assign the end value(s) to the View.
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DRectFEvaluator.java18 import android.animation.TypeEvaluator;
/frameworks/base/packages/SystemUI/src/com/android/systemui/tv/pip/
H A DPipRecentsControlsView.java19 import android.animation.Animator;
20 import android.animation.AnimatorInflater;
21 import android.animation.AnimatorListenerAdapter;
22 import android.animation.AnimatorSet;
102 * Starts focus gain animation.
105 // Hides the scrim view as soon as possible, before the PIP resize animation starts.
117 * Starts focus loss animation.
/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
H A DVectorDrawableAnimation.java17 import android.animation.ValueAnimator;
38 // Start the animation (looped playback by default).
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DTileDrawable.java19 import android.animation.ValueAnimator;
20 import android.animation.ValueAnimator.AnimatorUpdateListener;
58 public void onAnimationUpdate(ValueAnimator animation) {
59 setAlpha((Integer) animation.getAnimatedValue());
H A DExtendedBitmapDrawable.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
22 import android.animation.ValueAnimator.AnimatorUpdateListener;
31 import android.view.animation.LinearInterpolator;
470 public void onAnimationUpdate(ValueAnimator animation) {
471 mPulseAlphaFraction = ((Integer) animation.getAnimatedValue()) / 255f;
478 public void onAnimationEnd(Animator animation) {
522 // can't cancel the pulsing yet-- wait for the fade-out animation to end
549 public void onAnimationUpdate(ValueAnimator animation) {
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DPlaybackOverlayFragment.java18 import android.animation.Animator;
19 import android.animation.AnimatorInflater;
20 import android.animation.TimeInterpolator;
21 import android.animation.ValueAnimator;
25 import android.view.animation.AccelerateInterpolator;
26 import android.animation.ValueAnimator.AnimatorUpdateListener;
33 import android.support.v17.leanback.animation.LogAccelerateInterpolator;
34 import android.support.v17.leanback.animation.LogDecelerateInterpolator;
141 public void onAnimationStart(Animator animation) {
145 public void onAnimationRepeat(Animator animation) {
755 onAnimationCancel(Animator animation) argument
757 onAnimationRepeat(Animator animation) argument
759 onAnimationStart(Animator animation) argument
766 onAnimationEnd(Animator animation) argument
[all...]
H A DPlaybackOverlaySupportFragment.java20 import android.animation.Animator;
21 import android.animation.AnimatorInflater;
22 import android.animation.TimeInterpolator;
23 import android.animation.ValueAnimator;
27 import android.view.animation.AccelerateInterpolator;
28 import android.animation.ValueAnimator.AnimatorUpdateListener;
35 import android.support.v17.leanback.animation.LogAccelerateInterpolator;
36 import android.support.v17.leanback.animation.LogDecelerateInterpolator;
143 public void onAnimationStart(Animator animation) {
147 public void onAnimationRepeat(Animator animation) {
757 onAnimationCancel(Animator animation) argument
759 onAnimationRepeat(Animator animation) argument
761 onAnimationStart(Animator animation) argument
768 onAnimationEnd(Animator animation) argument
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java19 import android.view.animation.AccelerateDecelerateInterpolator;
20 import android.view.animation.Interpolator;
21 import android.view.animation.Animation;
22 import android.view.animation.LinearInterpolator;
23 import android.view.animation.Transformation;
39 import android.support.v4.view.animation.FastOutSlowInInterpolator;
95 /** The indicator ring, used to manage animation state. */
204 * Set the colors used in the progress animation from color resources.
329 * Update the ring color if this is within the last 25% of the animation.
364 final Animation animation
[all...]

Completed in 3196 milliseconds

1234567891011>>