HomeSort by relevance Sort by last modified time
    Searched defs:animation (Results 76 - 100 of 337) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/services/core/java/com/android/server/wm/animation/
ClipRectTBAnimation.java 17 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
54 // code from Animation here and use it to calculate/store the uninterpolated normalized
  /frameworks/support/core-ui/java/android/support/v4/view/animation/
LookupTableInterpolator.java 17 package android.support.v4.view.animation;
19 import android.view.animation.Interpolator;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/animation/
LogAccelerateInterpolator.java 14 package android.support.v17.leanback.animation;
18 import android.animation.TimeInterpolator;
LogDecelerateInterpolator.java 14 package android.support.v17.leanback.animation;
18 import android.animation.TimeInterpolator;
  /packages/apps/Messaging/src/com/android/messaging/ui/animation/
RectEvaluatorCompat.java 16 package com.android.messaging.ui.animation;
18 import android.animation.RectEvaluator;
19 import android.animation.TypeEvaluator;
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationCloning.java 17 package com.example.android.apis.animation;
24 import android.animation.*;
35 import android.view.animation.AccelerateInterpolator;
36 import android.view.animation.DecelerateInterpolator;
64 AnimatorSet animation = null; field in class:AnimationCloning.MyAnimationView
79 if (animation == null) {
100 animation = new AnimatorSet();
101 animation.playTogether(anim1, anim2, s1);
102 animation.playSequentially(s1, s2);
140 animation.start()
    [all...]
AnimatorEvents.java 17 package com.example.android.apis.animation;
21 import android.animation.Animator;
22 import android.animation.ObjectAnimator;
29 import android.animation.ValueAnimator;
30 import android.animation.AnimatorSet;
41 import android.view.animation.AccelerateInterpolator;
109 Animator animation; field in class:AnimatorEvents.MyAnimationView
119 if (animation == null) {
140 animation = new AnimatorSet();
141 ((AnimatorSet) animation).playTogether(yAnim, xAnim)
    [all...]
Transitions.java 16 package com.example.android.apis.animation;
AnimationLoading.java 17 package com.example.android.apis.animation;
21 import android.animation.AnimatorInflater;
22 import android.animation.AnimatorSet;
23 import android.animation.ObjectAnimator;
29 import android.animation.Animator;
30 import android.animation.ValueAnimator;
73 Animator animation = null; field in class:AnimationLoading.MyAnimationView
90 if (animation == null) {
99 public void onAnimationUpdate(ValueAnimator animation) {
100 balls.get(1).setAlpha((Float) animation.getAnimatedValue())
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ScaledTextActivity.java 19 import android.animation.ObjectAnimator;
38 ObjectAnimator animation = ObjectAnimator.ofFloat(view, "textScale", 1.0f, 10.0f); local
39 animation.setDuration(3000);
40 animation.setRepeatCount(ObjectAnimator.INFINITE);
41 animation.setRepeatMode(ObjectAnimator.REVERSE);
42 animation.start();
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/television/
PermissionsFrameFragment.java 28 import android.view.animation.Animation;
29 import android.view.animation.Animation.AnimationListener;
30 import android.view.animation.AnimationUtils;
106 Animation animation = AnimationUtils.loadAnimation(getContext(), local
111 animation.setAnimationListener(new AnimationListener() {
113 public void onAnimationStart(Animation animation) {
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationTestCtsActivity.java 17 package android.view.animation.cts;
  /frameworks/base/core/java/android/animation/
ArgbEvaluator.java 17 package android.animation;
FloatKeyframeSet.java 17 package android.animation;
19 import android.animation.Keyframe.FloatKeyframe;
25 * values between those keyframes for a given animation. The class internal to the animation
30 * TypeEvaluator set for the animation, so that values can be calculated without autoboxing to the
IntKeyframeSet.java 17 package android.animation;
19 import android.animation.Keyframe.IntKeyframe;
25 * values between those keyframes for a given animation. The class internal to the animation
30 * TypeEvaluator set for the animation, so that values can be calculated without autoboxing to the
TimeAnimator.java 17 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);
  /frameworks/base/core/java/android/view/animation/
AccelerateInterpolator.java 17 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
AnticipateOvershootInterpolator.java 17 package android.view.animation;
29 import com.android.internal.view.animation.HasNativeInterpolator;
30 import com.android.internal.view.animation.NativeInterpolatorFactory;
31 import com.android.internal.view.animation.NativeInterpolatorFactoryHelper;
ClipRectAnimation.java 17 package android.view.animation;
22 * An animation that controls the clip of an object. See the
23 * {@link android.view.animation full package} description for details and
28 public class ClipRectAnimation extends Animation {
40 throw new RuntimeException("Expected non-null animation clip rects");
DecelerateInterpolator.java 17 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
  /frameworks/base/core/java/com/android/internal/view/animation/
FallbackLUTInterpolator.java 17 package com.android.internal.view.animation;
19 import android.animation.TimeInterpolator;
33 // If the duration of an animation is more than 300 frames, we cap the sample size to 300.
NativeInterpolatorFactoryHelper.java 17 package com.android.internal.view.animation;
  /frameworks/base/core/tests/coretests/src/android/animation/
AnimatorSetEventsTest.java 16 package android.animation;
StateListAnimatorTest.java 18 package android.animation;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
LockIcon.java 157 // Load the animation resource.
164 final AnimatedVectorDrawable animation = icon instanceof AnimatedVectorDrawable local
183 if (animation != null && isAnim) {
184 animation.forceAnimationOnUI();
185 animation.start();
256 // If screen is off and device asleep, use the draw on animation so the first frame

Completed in 1001 milliseconds

1 2 34 5 6 7 8 91011>>