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

12345678

/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DPropertyValuesHolder_Delegate.java17 package android.animation;
23 * Delegate implementing the native methods of android.animation.PropertyValuesHolder
/frameworks/base/core/java/android/transition/
H A DChangeText.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ValueAnimator;
62 * Flag specifying that the text changing animation should first fade
64 * view at the end of the fade-out animation. This transition is typically
73 * Flag specifying that the text changing animation should fade in the
83 * Flag specifying that the text changing animation should first fade
98 * Sets the type of changing animation that will be run, one of
102 * @param changeBehavior The type of fading animation t
[all...]
H A DFade.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
40 * the animation. However, if a view is in a hierarchy which is also altering
104 // run listener if we're noop'ing the animation, to get the end-state results now
256 public void onAnimationEnd(Animator animation) {
268 public void onAnimationPause(Animator animation) {
275 public void onAnimationResume(Animator animation) {
299 public void onAnimationPause(Animator animation) {
308 public void onAnimationResume(Animator animation) {
[all...]
H A DRecolor.java19 import android.animation.Animator;
20 import android.animation.ArgbEvaluator;
21 import android.animation.ObjectAnimator;
H A DCrossfade.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
23 import android.animation.RectEvaluator;
24 import android.animation.ValueAnimator;
63 * Flag specifying that the fading animation should cross-fade
73 * Flag specifying that the fading animation should reveal the
84 * Flag specifying that the fading animation should first fade
105 * This means that the animation wil
[all...]
H A DRotate.java19 import android.animation.Animator;
20 import android.animation.ObjectAnimator;
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java24 import android.animation.Animator.AnimatorListener;
25 import android.animation.Animator;
26 import android.animation.AnimatorListenerAdapter;
27 import android.animation.ObjectAnimator;
28 import android.animation.PropertyValuesHolder;
29 import android.animation.TimeInterpolator;
30 import android.animation.ValueAnimator.AnimatorUpdateListener;
116 // Update animation with properties discovered in loop above
143 public void onAnimationEnd(Animator animation) {
144 remove(animation);
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimator.java17 package android.animation;
28 * The set of listeners to be sent events through the life of an animation.
34 * of an animation.
44 * Starts this animation. If the animation has a nonzero startDelay, the animation will start
45 * running after that delay elapses. A non-delayed animation will have its initial
49 * <p>The animation started by calling this method will be run on the thread that called
51 * this is not the case). Also, if the animation will animate
60 * Cancels the animation
370 onAnimationStart(Animator animation) argument
378 onAnimationEnd(Animator animation) argument
386 onAnimationCancel(Animator animation) argument
393 onAnimationRepeat(Animator animation) argument
409 onAnimationPause(Animator animation) argument
418 onAnimationResume(Animator animation) argument
[all...]
H A DRectEvaluator.java16 package android.animation;
H A DArgbEvaluator.java17 package android.animation;
/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java22 import android.animation.Animator;
23 import android.animation.AnimatorSet;
24 import android.animation.ObjectAnimator;
25 import android.animation.TimeInterpolator;
32 import android.view.animation.DecelerateInterpolator;
260 public void onAnimationStart(Animator animation) { argument
262 mVisibilityAnim = animation;
267 public void onAnimationEnd(Animator animation) { argument
278 public void onAnimationCancel(Animator animation) { argument
283 public void onAnimationRepeat(Animator animation) { argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java19 import android.animation.Animator;
20 import android.animation.ValueAnimator;
21 import android.animation.TimeInterpolator;
28 * This class enables automatic and optimized animation of select properties on View objects.
30 * {@link android.animation.ObjectAnimator} is fine; the property setters called by ObjectAnimator
113 * properties currently being animated, as well as the cleanup after an animation is
122 * property is tossed onto the pending list until the animation actually starts (which is
154 * a property animation is requested, we cancel any previous postings of the Runnable
167 * This class holds information about the overall animation being run on the set of
212 * animator handling the animation
989 onAnimationStart(Animator animation) argument
1010 onAnimationCancel(Animator animation) argument
1020 onAnimationRepeat(Animator animation) argument
1027 onAnimationEnd(Animator animation) argument
1058 onAnimationUpdate(ValueAnimator animation) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAutoCancelTest.java16 package android.animation;
75 public void onAnimationStart(Animator animation) {
90 public void onAnimationStart(Animator animation) {
102 public void onAnimationEnd(Animator animation) {
189 public void onAnimationCancel(Animator animation) {
190 mCanceledMap.put(animation, true);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DScaledTextActivity.java19 import android.animation.ObjectAnimator;
38 ObjectAnimator animation = ObjectAnimator.ofFloat(view, "textScale", 1.0f, 10.0f);
39 animation.setDuration(3000);
40 animation.setRepeatCount(ObjectAnimator.INFINITE);
41 animation.setRepeatMode(ObjectAnimator.REVERSE);
42 animation.start();
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DHitRectBug.java18 import android.animation.ObjectAnimator;
19 import android.animation.ValueAnimator;
68 public void onAnimationUpdate(ValueAnimator animation) {
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
H A DUtils.java19 import android.animation.Keyframe;
20 import android.animation.ObjectAnimator;
21 import android.animation.PropertyValuesHolder;
/frameworks/base/core/java/android/view/animation/
H A DBounceInterpolator.java17 package android.view.animation;
H A DCycleInterpolator.java17 package android.view.animation;
24 * Repeats the animation for a specified number of cycles. The
H A DAccelerateInterpolator.java17 package android.view.animation;
40 * @param factor Degree to which the animation should be eased. Seting
H A DAnticipateInterpolator.java17 package android.view.animation;
H A DDecelerateInterpolator.java17 package android.view.animation;
35 * @param factor Degree to which the animation should be eased. Setting factor to 1.0f produces
H A DOvershootInterpolator.java17 package android.view.animation;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardMultiUserAvatar.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator.AnimatorUpdateListener;
22 import android.animation.ValueAnimator;
191 public void onAnimationUpdate(ValueAnimator animation) {
192 float r = animation.getAnimatedFraction();
204 public void onAnimationEnd(Animator animation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarTransitions.java19 import android.animation.Animator;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp274 // of being encrypted we show the encrypted boot animation.
409 Animation animation; local
422 animation.width = width;
423 animation.height = height;
424 animation.fps = fps;
433 animation.parts.add(part);
440 const size_t pcount = animation.parts.size();
450 if (path == animation.parts[j].path) {
460 Animation::Part& part(animation.parts.editItemAt(j));
489 const int xc = (mWidth - animation
[all...]

Completed in 493 milliseconds

12345678