Searched refs:animation (Results 26 - 50 of 424) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/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.
60 * an animation.
80 * to a <code>TimeAnimator</code> instance to receive callbacks on every animation
89 * <p>Notifies listeners of the occurrence of another frame of the animation,
92 * @param animation The animator sending out the notification.
96 void onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime); argument
H A DKeyframes.java16 package android.animation;
22 * ValueAnimator to calculate values between those keyframes for a given animation.
43 * Gets the animated value, given the elapsed fraction of the animation (interpolated by the
44 * animation's interpolator) and the evaluator used to calculate in-between values. This
47 * outside the [0-1] bounds, if the animation's interpolator made that happen (e.g., a
51 * @param fraction The elapsed fraction of the animation
77 * @param fraction The elapsed fraction of the animation
90 * @param fraction The elapsed fraction of the animation
H A DRevealAnimator.java17 package android.animation;
/frameworks/base/core/java/android/view/animation/
H A DBaseInterpolator.java17 package android.view.animation;
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;
H A DAccelerateInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
48 * @param factor Degree to which the animation should be eased. Seting
H A DAnticipateInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
H A DCycleInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
31 * Repeats the animation for a specified number of cycles. The
H A DDecelerateInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
43 * @param factor Degree to which the animation should be eased. Setting factor to 1.0f produces
H A DOvershootInterpolator.java17 package android.view.animation;
26 import com.android.internal.view.animation.HasNativeInterpolator;
27 import com.android.internal.view.animation.NativeInterpolatorFactory;
28 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
/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/v4/donut/android/support/v4/view/animation/
H A DPathInterpolatorCompatBase.java17 package android.support.v4.view.animation;
20 import android.view.animation.Interpolator;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DInterpolators.java19 import android.view.animation.AccelerateDecelerateInterpolator;
20 import android.view.animation.AccelerateInterpolator;
21 import android.view.animation.DecelerateInterpolator;
22 import android.view.animation.Interpolator;
23 import android.view.animation.LinearInterpolator;
24 import android.view.animation.PathInterpolator;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DSystemBarScrimViews.java64 AnimationProps animation) {
66 if (animateNavBarScrim && animation != null) {
67 animateNavBarScrimVisibility(true, animation);
86 private void animateNavBarScrimVisibility(boolean visible, AnimationProps animation) { argument
94 if (animation != AnimationProps.IMMEDIATE) {
97 .setDuration(animation.getDuration(AnimationProps.BOUNDS))
98 .setInterpolator(animation.getInterpolator(AnimationProps.BOUNDS))
119 AnimationProps animation = mShouldAnimateNavBarScrim
124 animateNavBarScrimVisibility(true, animation);
134 AnimationProps animation
63 updateNavBarScrim(boolean animateNavBarScrim, boolean hasStackTasks, AnimationProps animation) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DSettingsButton.java18 import android.animation.Animator;
19 import android.animation.Animator.AnimatorListener;
20 import android.animation.ObjectAnimator;
27 import android.view.animation.Animation;
28 import android.view.animation.AnimationUtils;
109 public void onAnimationStart(Animator animation) {
113 public void onAnimationRepeat(Animator animation) {
117 public void onAnimationEnd(Animator animation) {
124 public void onAnimationCancel(Animator animation) {
138 public void onAnimationStart(Animator animation) {
[all...]
/frameworks/base/services/core/java/com/android/server/wm/animation/
H A DClipRectTBAnimation.java17 package com.android.server.wm.animation;
20 import android.view.animation.ClipRectAnimation;
21 import android.view.animation.Interpolator;
22 import android.view.animation.Transformation;
23 import android.view.animation.TranslateAnimation;
29 * animation can be specified so this animation simulates as the clip would be applied after instead
53 // Hack: Because translation animation has a different interpolator, we need to duplicate
/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/support/v17/leanback/src/android/support/v17/leanback/animation/
H A DLogAccelerateInterpolator.java14 package android.support.v17.leanback.animation;
16 import android.animation.TimeInterpolator;
H A DLogDecelerateInterpolator.java14 package android.support.v17.leanback.animation;
16 import android.animation.TimeInterpolator;
/frameworks/support/v4/java/android/support/v4/view/animation/
H A DLookupTableInterpolator.java17 package android.support.v4.view.animation;
19 import android.view.animation.Interpolator;
/frameworks/base/core/java/com/android/internal/view/animation/
H A DHasNativeInterpolator.java17 package com.android.internal.view.animation;

Completed in 9651 milliseconds

1234567891011>>