Searched refs:animation (Results 301 - 325 of 424) sorted by relevance

<<11121314151617

/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java40 import android.view.animation.AccelerateInterpolator;
41 import android.view.animation.AlphaAnimation;
42 import android.view.animation.Animation;
43 import android.view.animation.AnimationSet;
44 import android.view.animation.AnimationUtils;
45 import android.view.animation.DecelerateInterpolator;
46 import android.view.animation.Interpolator;
47 import android.view.animation.ScaleAnimation;
48 import android.view.animation.Animation.AnimationListener;
451 public void onAnimationStart(Animation animation) { argument
459 onAnimationEnd(Animation animation) argument
488 onAnimationRepeat(Animation animation) argument
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimationHandler.java17 package android.animation;
27 * ValueAnimators. This approach ensures that the setting of animation values will happen on the
108 * time *after* traversals are done, as opposed to the animation frame timing, which is
109 * before any traversals. This timing can be used to adjust the start time of an animation
110 * when expensive traversals create big delta between the animation frame timing and the time
111 * that animation is first shown on screen.
113 * Note this should only be called when the animation has already registered to receive
114 * animation frame callbacks. This callback will be guaranteed to happen *after* the next
115 * animation frame callback.
273 * Callbacks that receives notifications for animation timin
[all...]
H A DKeyframe.java17 package android.animation;
20 * This class holds a time/value pair for an animation. The Keyframe class is used
21 * by {@link ValueAnimator} to define the values that the animation target will have over the course
22 * of the animation. As the time proceeds from one keyframe to the other, the value of the
31 * treats its values as Objects. Unless your animation requires dealing with a custom type
39 * animation first starts, to populate placeholder keyframes with real values derived
72 * time, as a proportion of an overall animation's duration, at which the value will hold true
73 * for the animation. The value for the animation between keyframes will be calculated as
77 * of time elapsed of the overall animation duratio
[all...]
H A DPathKeyframes.java16 package android.animation;
/frameworks/base/core/java/android/view/animation/
H A DTransformation.java17 package android.view.animation;
H A DTranslateAnimation.java17 package android.view.animation;
24 * An animation that controls the position of an object. See the
25 * {@link android.view.animation full package} description for details and
94 * animation
96 * animation
98 * animation
100 * animation
121 * animation. This value can either be an absolute number if fromXType
127 * animation. This value can either be an absolute number if toXType
133 * animation
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DSignalTileView.java19 import android.animation.ValueAnimator;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/animations/
H A DDismissAnimationsHolder.java18 import android.animation.Animator.AnimatorListener;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarIconController.java19 import android.animation.ArgbEvaluator;
20 import android.animation.ValueAnimator;
379 * Shows a view, and synchronizes the animation with Keyguard exit animations, if applicable.
395 // both hide and show in the same frame before the animation actually gets started.
453 public void onAnimationUpdate(ValueAnimator animation) {
454 setIconTintInternal((Float) animation.getAnimatedValue());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDeadZone.java19 import android.animation.ObjectAnimator;
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMagnificationController.java24 import android.animation.ObjectAnimator;
25 import android.animation.TypeEvaluator;
26 import android.animation.ValueAnimator;
47 import android.view.animation.DecelerateInterpolator;
54 * holding the current state of magnification and animation, and it handles
81 * The current magnification spec. If an animation is running, this
268 * Returns the magnification scale. If an animation is in progress,
269 * this reflects the end state of the animation.
278 * Returns the X offset of the magnification viewport. If an animation
279 * is in progress, this reflects the end state of the animation
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DColoredRectsActivity.java19 import android.animation.ObjectAnimator;
H A DPointsActivity.java19 import android.animation.ObjectAnimator;
H A DViewLayersActivity.java19 import android.animation.ObjectAnimator;
/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DViewCompatHC.java19 import android.animation.ValueAnimator;
/frameworks/support/v4/java/android/support/v4/widget/
H A DCircleImageView.java28 import android.view.animation.Animation;
33 * called before the animation is actually complete and support shadows on older
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DScrollingTabContainerView.java37 import android.view.animation.DecelerateInterpolator;
38 import android.view.animation.Interpolator;
587 public VisibilityAnimListener withFinalVisibility(ViewPropertyAnimatorCompat animation, argument
590 mVisibilityAnim = animation;
H A DSwitchCompat.java51 import android.view.animation.Animation;
52 import android.view.animation.Transformation;
1021 public void onAnimationStart(Animation animation) {}
1024 public void onAnimationEnd(Animation animation) {
1025 if (mPositionAnimator == animation) {
1026 // If we're still the active animation, ensure the final position
1033 public void onAnimationRepeat(Animation animation) {}
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DOverlayListView.java24 import android.view.animation.Interpolator;
135 * Returns the started status of the animation.
137 * @return True if the animation has started, false otherwise.
144 * Sets animation for varying alpha.
146 * @param startAlpha Starting alpha value for the animation, where 1.0 means
148 * @param endAlpha Ending alpha value for the animation.
158 * Sets animation for moving objects vertically.
169 * Sets how long the animation will last.
180 * Sets the acceleration curve for this animation.
191 * Binds an animation en
[all...]
/frameworks/base/core/java/android/transition/
H A DTransition.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.TimeInterpolator;
40 import android.view.animation.AnimationUtils;
325 * @param duration The length of the animation, in milliseconds.
408 * then the old animation is canceled since the new transition will start a new
409 * animation to these new values. If the values are equal, the old animation is
410 * allowed to continue and no new animation is started for that transition.
426 * This method creates an animation tha
[all...]
/frameworks/base/core/java/android/widget/
H A DProgressBar.java19 import android.animation.ObjectAnimator;
54 import android.view.animation.AlphaAnimation;
55 import android.view.animation.Animation;
56 import android.view.animation.AnimationUtils;
57 import android.view.animation.DecelerateInterpolator;
58 import android.view.animation.Interpolator;
59 import android.view.animation.LinearInterpolator;
60 import android.view.animation.Transformation;
78 * progress bar shows a cyclic animation without an indication of progress. This mode is used by
244 /** Value used to track progress animation, i
[all...]
H A DFastScroller.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.AnimatorListenerAdapter;
22 import android.animation.AnimatorSet;
23 import android.animation.ObjectAnimator;
24 import android.animation.PropertyValuesHolder;
55 /** Duration of fade-out animation. */
58 /** Duration of fade-in animation. */
61 /** Duration of transition cross-fade animation. */
64 /** Duration of transition resize animation
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAbstractMediaItemPresenter.java17 import android.animation.ValueAnimator;
27 import android.view.animation.DecelerateInterpolator;
431 * @param layoutAnimator the ValueAnimator producing animation frames for the selector's width
485 // change selector to the proper width and marginLeft without animation.
498 // Set width to the proper width for this animation step.
H A DPlaybackControlsPresenter.java16 import android.animation.ValueAnimator;
30 import android.view.animation.LinearInterpolator;
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayPowerController.java23 import android.animation.Animator;
24 import android.animation.ObjectAnimator;
53 * including the screen off animation.
78 // If true, uses the color fade on animation.
81 // screen state returns. Playing the animation can also be somewhat slow.
105 // Brightness animation ramp rate in brightness units per second.
160 // a stylish color fade animation instead.
485 public void onAnimationStart(Animator animation) {
488 public void onAnimationEnd(Animator animation) {
492 public void onAnimationRepeat(Animator animation) {
[all...]

Completed in 494 milliseconds

<<11121314151617