Home
last modified time | relevance | path

Searched refs:animation (Results 1 – 25 of 596) sorted by relevance

12345678910>>...24

/frameworks/support/dynamic-animation/api/
D26.0.0.txt1 package android.support.animation {
3 public abstract class DynamicAnimation<T extends android.support.animation.DynamicAnimation<T>> {
4 … method public T addEndListener(android.support.animation.DynamicAnimation.OnAnimationEndListener);
5 …method public T addUpdateListener(android.support.animation.DynamicAnimation.OnAnimationUpdateList…
9 …method public void removeEndListener(android.support.animation.DynamicAnimation.OnAnimationEndList…
10 …method public void removeUpdateListener(android.support.animation.DynamicAnimation.OnAnimationUpda…
17 field public static final android.support.animation.DynamicAnimation.ViewProperty ALPHA;
22 field public static final android.support.animation.DynamicAnimation.ViewProperty ROTATION;
23 field public static final android.support.animation.DynamicAnimation.ViewProperty ROTATION_X;
24 field public static final android.support.animation.DynamicAnimation.ViewProperty ROTATION_Y;
[all …]
Dcurrent.txt1 package android.support.animation {
3 public abstract class DynamicAnimation<T extends android.support.animation.DynamicAnimation<T>> {
4 … method public T addEndListener(android.support.animation.DynamicAnimation.OnAnimationEndListener);
5 …method public T addUpdateListener(android.support.animation.DynamicAnimation.OnAnimationUpdateList…
9 …method public void removeEndListener(android.support.animation.DynamicAnimation.OnAnimationEndList…
10 …method public void removeUpdateListener(android.support.animation.DynamicAnimation.OnAnimationUpda…
17 field public static final android.support.animation.DynamicAnimation.ViewProperty ALPHA;
22 field public static final android.support.animation.DynamicAnimation.ViewProperty ROTATION;
23 field public static final android.support.animation.DynamicAnimation.ViewProperty ROTATION_X;
24 field public static final android.support.animation.DynamicAnimation.ViewProperty ROTATION_Y;
[all …]
/frameworks/base/core/tests/coretests/src/android/widget/listview/
DListWithDisappearingItemBug.java25 import android.view.animation.AlphaAnimation;
26 import android.view.animation.Animation;
27 import android.view.animation.AnimationSet;
28 import android.view.animation.LayoutAnimationController;
29 import android.view.animation.TranslateAnimation;
63 Animation animation = new AlphaAnimation(0.0f, 1.0f); in onCreate() local
64 animation.setDuration(50); in onCreate()
65 set.addAnimation(animation); in onCreate()
67 animation = new TranslateAnimation( in onCreate()
71 animation.setDuration(100); in onCreate()
[all …]
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
DViewGroupBindingAdapter.java18 import android.animation.LayoutTransition;
27 import android.view.animation.Animation;
28 import android.view.animation.Animation.AnimationListener;
81 public void onAnimationStart(Animation animation) { in setListener()
83 start.onAnimationStart(animation); in setListener()
88 public void onAnimationEnd(Animation animation) { in setListener()
90 end.onAnimationEnd(animation); in setListener()
95 public void onAnimationRepeat(Animation animation) { in setListener()
97 repeat.onAnimationRepeat(animation); in setListener()
113 void onAnimationStart(Animation animation); in onAnimationStart() argument
[all …]
/frameworks/layoutlib/bridge/src/com/android/internal/view/animation/
DNativeInterpolatorFactoryHelper_Delegate.java17 package com.android.internal.view.animation;
24 import android.view.animation.AccelerateDecelerateInterpolator;
25 import android.view.animation.AccelerateInterpolator;
26 import android.view.animation.AnticipateInterpolator;
27 import android.view.animation.AnticipateOvershootInterpolator;
28 import android.view.animation.BaseInterpolator;
29 import android.view.animation.BounceInterpolator;
30 import android.view.animation.CycleInterpolator;
31 import android.view.animation.DecelerateInterpolator;
32 import android.view.animation.Interpolator;
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DSystemBarScrimViews.java64 AnimationProps animation) { in updateNavBarScrim() argument
66 if (animateNavBarScrim && animation != null) { in updateNavBarScrim()
67 animateNavBarScrimVisibility(true, animation); in updateNavBarScrim()
86 private void animateNavBarScrimVisibility(boolean visible, AnimationProps animation) { in animateNavBarScrimVisibility() argument
94 if (animation != AnimationProps.IMMEDIATE) { in animateNavBarScrimVisibility()
97 .setDuration(animation.getDuration(AnimationProps.BOUNDS)) in animateNavBarScrimVisibility()
98 .setInterpolator(animation.getInterpolator(AnimationProps.BOUNDS)) in animateNavBarScrimVisibility()
119 AnimationProps animation = mShouldAnimateNavBarScrim in onBusEvent() local
124 animateNavBarScrimVisibility(true, animation); in onBusEvent()
134 AnimationProps animation = createBoundsAnimation( in onBusEvent() local
[all …]
/frameworks/base/core/java/android/animation/
DAnimatorListenerAdapter.java17 package android.animation;
31 public void onAnimationCancel(Animator animation) { in onAnimationCancel() argument
38 public void onAnimationEnd(Animator animation) { in onAnimationEnd() argument
45 public void onAnimationRepeat(Animator animation) { in onAnimationRepeat() argument
52 public void onAnimationStart(Animator animation) { in onAnimationStart() argument
59 public void onAnimationPause(Animator animation) { in onAnimationPause() argument
66 public void onAnimationResume(Animator animation) { in onAnimationResume() argument
DAnimator.java17 package android.animation;
535 default void onAnimationStart(Animator animation, boolean isReverse) { in onAnimationStart() argument
536 onAnimationStart(animation); in onAnimationStart()
551 default void onAnimationEnd(Animator animation, boolean isReverse) { in onAnimationEnd() argument
552 onAnimationEnd(animation); in onAnimationEnd()
560 void onAnimationStart(Animator animation); in onAnimationStart() argument
568 void onAnimationEnd(Animator animation); in onAnimationEnd() argument
576 void onAnimationCancel(Animator animation); in onAnimationCancel() argument
583 void onAnimationRepeat(Animator animation); in onAnimationRepeat() argument
599 void onAnimationPause(Animator animation); in onAnimationPause() argument
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
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) { in startExitAnimation()
113 public void onAnimationRepeat(Animator animation) { in startExitAnimation()
117 public void onAnimationEnd(Animator animation) { in startExitAnimation()
124 public void onAnimationCancel(Animator animation) { in startExitAnimation()
138 public void onAnimationStart(Animator animation) { in startAccelSpin()
[all …]
DTrustDrawable.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ValueAnimator;
32 import android.view.animation.Interpolator;
255 public void onAnimationUpdate(ValueAnimator animation) {
256 mCurAlpha = (int) animation.getAnimatedValue();
264 public void onAnimationUpdate(ValueAnimator animation) {
265 mCurInnerRadius = (float) animation.getAnimatedValue();
274 public void onAnimationStart(Animator animation) { in onAnimationStart() argument
[all …]
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
DAnimationUtilsCompat.java28 import android.support.v4.view.animation.FastOutLinearInInterpolator;
29 import android.support.v4.view.animation.FastOutSlowInInterpolator;
30 import android.support.v4.view.animation.LinearOutSlowInInterpolator;
33 import android.view.animation.AccelerateDecelerateInterpolator;
34 import android.view.animation.AccelerateInterpolator;
35 import android.view.animation.AnimationUtils;
36 import android.view.animation.AnticipateInterpolator;
37 import android.view.animation.AnticipateOvershootInterpolator;
38 import android.view.animation.BounceInterpolator;
39 import android.view.animation.CycleInterpolator;
[all …]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
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 …]
DMarqueeActivity.java23 import android.view.animation.Animation;
24 import android.view.animation.AnimationUtils;
60 Animation animation = AnimationUtils.loadAnimation(text2.getContext(), in onCreate()
62 animation.setFillEnabled(true); in onCreate()
63 animation.setFillAfter(true); in onCreate()
64 text2.startAnimation(animation); in onCreate()
/frameworks/base/services/core/java/com/android/server/wm/
DAppWindowAnimator.java36 import android.view.animation.Animation;
37 import android.view.animation.Transformation;
55 Animation animation; field in AppWindowAnimator
130 animation = anim; in setAnimation()
172 animation = sDummyAnimation; in setDummyAnimation()
179 animation = null; in setNullAnimation()
184 if (animation != null) { in clearAnimation()
198 return animation != null || mAppToken.inPendingTransaction; in isAnimating()
206 return animation != null && !animating; in isAnimationStarting()
233 if (animation != null) { in transferCurrentAnimation()
[all …]
/frameworks/base/cmds/bootanimation/
DBootAnimation.cpp620 bool BootAnimation::parseAnimationDesc(Animation& animation) in parseAnimationDesc() argument
624 if (!readFile(animation.zip, "desc.txt", desString)) { in parseAnimationDesc()
648 animation.width = width; in parseAnimationDesc()
649 animation.height = height; in parseAnimationDesc()
650 animation.fps = fps; in parseAnimationDesc()
661 part.animation = NULL; in parseAnimationDesc()
669 animation.parts.add(part); in parseAnimationDesc()
678 part.animation = loadAnimation(String8(SYSTEM_BOOTANIMATION_FILE)); in parseAnimationDesc()
679 if (part.animation != NULL) in parseAnimationDesc()
680 animation.parts.add(part); in parseAnimationDesc()
[all …]
/frameworks/support/design/base/android/support/design/widget/
DAnimationUtils.java19 import android.support.v4.view.animation.FastOutLinearInInterpolator;
20 import android.support.v4.view.animation.FastOutSlowInInterpolator;
21 import android.support.v4.view.animation.LinearOutSlowInInterpolator;
22 import android.view.animation.DecelerateInterpolator;
23 import android.view.animation.Interpolator;
24 import android.view.animation.LinearInterpolator;
/frameworks/base/core/java/android/view/
DViewPropertyAnimator.java19 import android.animation.Animator;
20 import android.animation.TimeInterpolator;
21 import android.animation.ValueAnimator;
1074 public void onAnimationStart(Animator animation) { in onAnimationStart() argument
1076 Runnable r = mAnimatorSetupMap.get(animation); in onAnimationStart()
1080 mAnimatorSetupMap.remove(animation); in onAnimationStart()
1083 Runnable r = mAnimatorOnStartMap.get(animation); in onAnimationStart()
1087 mAnimatorOnStartMap.remove(animation); in onAnimationStart()
1090 mListener.onAnimationStart(animation); in onAnimationStart()
1095 public void onAnimationCancel(Animator animation) { in onAnimationCancel() argument
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
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/core/java/com/android/internal/widget/
DDrawableHolder.java21 import android.animation.Animator;
22 import android.animation.ObjectAnimator;
23 import android.animation.ValueAnimator;
24 import android.animation.Animator.AnimatorListener;
28 import android.view.animation.DecelerateInterpolator;
210 public void onAnimationCancel(Animator animation) { in onAnimationCancel() argument
214 public void onAnimationEnd(Animator animation) { in onAnimationEnd() argument
215 mAnimators.remove(animation); in onAnimationEnd()
218 public void onAnimationRepeat(Animator animation) { in onAnimationRepeat() argument
222 public void onAnimationStart(Animator animation) { in onAnimationStart() argument
/frameworks/base/core/java/android/view/animation/
DLayoutAnimationController.java17 package android.view.animation;
133 public LayoutAnimationController(Animation animation) { in LayoutAnimationController() argument
134 this(animation, 0.5f); in LayoutAnimationController()
144 public LayoutAnimationController(Animation animation, float delay) { in LayoutAnimationController() argument
146 setAnimation(animation); in LayoutAnimationController()
200 public void setAnimation(Animation animation) { in setAnimation() argument
201 mAnimation = animation; in setAnimation()
327 final Animation animation = mAnimation.clone(); in getAnimationForView() local
328 animation.setStartOffset(delay); in getAnimationForView()
329 return animation; in getAnimationForView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
DAssistDisclosure.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ValueAnimator;
34 import android.view.animation.AnimationUtils;
130 public void onAnimationStart(Animator animation) { in AssistDisclosureView()
135 public void onAnimationCancel(Animator animation) { in AssistDisclosureView()
140 public void onAnimationEnd(Animator animation) { in AssistDisclosureView()
230 public void onAnimationUpdate(ValueAnimator animation) { in onAnimationUpdate() argument
231 if (animation == mAlphaOutAnimator) { in onAnimationUpdate()
[all …]
/frameworks/base/services/core/java/com/android/server/policy/
DStatusBarController.java27 import android.view.animation.Animation;
28 import android.view.animation.AnimationSet;
29 import android.view.animation.Interpolator;
30 import android.view.animation.TranslateAnimation;
167 private static TranslateAnimation findTranslateAnimation(Animation animation) { in findTranslateAnimation() argument
168 if (animation instanceof TranslateAnimation) { in findTranslateAnimation()
169 return (TranslateAnimation) animation; in findTranslateAnimation()
170 } else if (animation instanceof AnimationSet) { in findTranslateAnimation()
171 AnimationSet set = (AnimationSet) animation; in findTranslateAnimation()
/frameworks/base/services/core/java/com/android/server/wm/animation/
DCurvedTranslateAnimation.java17 package com.android.server.wm.animation;
19 import android.animation.KeyframeSet;
20 import android.animation.PathKeyframes;
23 import android.view.animation.Animation;
24 import android.view.animation.Transformation;
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumeDialogMotion.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.TimeInterpolator;
22 import android.animation.ValueAnimator;
23 import android.animation.ValueAnimator.AnimatorUpdateListener;
33 import android.view.animation.PathInterpolator;
136 .setUpdateListener(animation -> { in startShowAnimation()
162 public void onAnimationEnd(Animator animation) { in startShowAnimation()
168 public void onAnimationCancel(Animator animation) { in startShowAnimation()
175 public void onAnimationUpdate(ValueAnimator animation) { in startShowAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DViewTransformationHelper.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
26 import android.view.animation.Interpolator;
75 public void onAnimationUpdate(ValueAnimator animation) { in transformTo()
76 transformTo(notification, animation.getAnimatedFraction()); in transformTo()
85 public void onAnimationEnd(Animator animation) { in transformTo()
97 public void onAnimationCancel(Animator animation) { in transformTo()
135 public void onAnimationUpdate(ValueAnimator animation) { in transformFrom()
136 transformFrom(notification, animation.getAnimatedFraction()); in transformFrom()
[all …]

12345678910>>...24