[go: nahoru, domu]

Searched refs:Animator (Results 1 - 25 of 161) sorted by relevance

1234567

/frameworks/base/core/java/android/animation/
H A DAnimatorListenerAdapter.java20 * This adapter class provides empty implementations of the methods from {@link android.animation.Animator.AnimatorListener}.
24 public abstract class AnimatorListenerAdapter implements Animator.AnimatorListener,
25 Animator.AnimatorPauseListener {
31 public void onAnimationCancel(Animator animation) {
38 public void onAnimationEnd(Animator animation) {
45 public void onAnimationRepeat(Animator animation) {
52 public void onAnimationStart(Animator animation) {
59 public void onAnimationPause(Animator animation) {
66 public void onAnimationResume(Animator animation) {
H A DAnimator.java29 public abstract class Animator implements Cloneable { class in inherits:Cloneable
53 * Animator. Used by the Animator cache.
67 * {@link AnimatorListener#onAnimationStart(Animator)} for any listeners of this animator.
82 * {@link android.animation.Animator.AnimatorListener#onAnimationCancel(Animator)} to
84 * {@link android.animation.Animator.AnimatorListener#onAnimationEnd(Animator)} message.
94 * {@link android.animation.Animator.AnimatorListener#onAnimationEnd(Animator)} metho
[all...]
H A DLayoutTransition.java38 * custom animations, use the {@link LayoutTransition#setAnimator(int, Animator)
145 private Animator mDisappearingAnim = null;
146 private Animator mAppearingAnim = null;
147 private Animator mChangingAppearingAnim = null;
148 private Animator mChangingDisappearingAnim = null;
149 private Animator mChangingAnim = null;
223 private final HashMap<View, Animator> pendingAnimations =
224 new HashMap<View, Animator>();
225 private final LinkedHashMap<View, Animator> currentChangingAnimations =
226 new LinkedHashMap<View, Animator>();
[all...]
H A DStateListAnimator.java32 * Each State Animator is defined in a nested <code>&lt;item></code> element.
53 private Animator mRunningAnimator = null;
66 public void onAnimationEnd(Animator animation) {
82 public void addState(int[] specs, Animator animator) {
90 * Returns the current {@link android.animation.Animator} which is started because of a state
93 * @return The currently running Animator or null if no Animator is running
96 public Animator getRunningAnimator() {
148 final Animator animatorClone = tuple.mAnimator.clone();
257 * this Animator
[all...]
/frameworks/base/core/java/android/view/
H A DViewAnimationUtils.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
30 * Returns an Animator which can animate a clipping circle.
41 * As a result {@link AnimatorListener#onAnimationEnd(Animator)}
51 * public static Animator createRevealWithDelay(View view, int centerX, int centerY, float startRadius, float endRadius) {
52 * Animator delayAnimator = ViewAnimationUtils.createCircularReveal(view, centerX, centerY, startRadius, startRadius);
54 * Animator revealAnimator = ViewAnimationUtils.createCircularReveal(view, centerX, centerY, startRadius, endRadius);
69 public static Animator createCircularReveal(View view,
H A DViewPropertyAnimator.java19 import android.animation.Animator;
40 * details of configuring the underlying Animator class and starting it.</p>
56 * The duration of the underlying Animator object. By default, we don't set the duration
57 * on the Animator and just use its default duration. If the duration is ever set on this
58 * Animator, then we use the duration that it was set to.
64 * the duration on the underlying Animator, but instead just use its default duration.
69 * The startDelay of the underlying Animator object. By default, we don't set the startDelay
70 * on the Animator and just use its default startDelay. If the startDelay is ever set on this
71 * Animator, then we use the startDelay that it was set to.
77 * the startDelay on the underlying Animator, bu
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DFragmentAnimationProvider.java16 import android.animation.Animator;
32 public abstract void onImeAppearing(@NonNull List<Animator> animators);
38 public abstract void onImeDisappearing(@NonNull List<Animator> animators);
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DViewPropertyAnimatorCompatJB.java18 import android.animation.Animator;
41 public void onAnimationCancel(Animator animation) {
46 public void onAnimationEnd(Animator animation) {
51 public void onAnimationStart(Animator animation) {
/frameworks/support/v4/honeycomb_mr1/android/support/v4/animation/
H A DHoneycombMr1AnimatorCompatProvider.java19 import android.animation.Animator;
44 final Animator mWrapped;
46 public HoneycombValueAnimatorCompat(Animator wrapped) {
95 static class AnimatorListenerCompatWrapper implements Animator.AnimatorListener {
108 public void onAnimationStart(Animator animation) {
113 public void onAnimationEnd(Animator animation) {
118 public void onAnimationCancel(Animator animation) {
123 public void onAnimationRepeat(Animator animation) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DPlayAnimationThread.java24 import android.animation.Animator;
28 private final Animator mAnimator;
30 public PlayAnimationThread(Animator animator, RenderSessionImpl scene, String animName,
/frameworks/support/design/honeycomb-mr1/android/support/design/widget/
H A DValueAnimatorCompatImplHoneycombMr1.java19 import android.animation.Animator;
61 public void onAnimationStart(Animator animator) {
66 public void onAnimationEnd(Animator animator) {
71 public void onAnimationCancel(Animator animator) {
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DRevealActivity.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
45 public void onAnimationStart(Animator animation) {
50 public void onAnimationRepeat(Animator animation) {
55 public void onAnimationEnd(Animator animation) {
60 public void onAnimationCancel(Animator animation) {
84 Animator animator = ViewAnimationUtils.createCircularReveal(view,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DSettingsButton.java18 import android.animation.Animator;
19 import android.animation.Animator.AnimatorListener;
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) {
142 public void onAnimationRepeat(Animator animation) {
146 public void onAnimationEnd(Animator animation) {
151 public void onAnimationCancel(Animator animatio
[all...]
H A DTrustDrawable.java19 import android.animation.Animator;
58 private Animator mCurAnimator;
69 private final Animator mVisibleAnimator;
201 private Animator makeVisibleAnimator() {
208 private Animator makeEnterAnimator(float radius, int alpha) {
214 private Animator makeExitAnimator(float radius, int alpha) {
220 private Animator makeAnimators(float startRadius, float endRadius,
273 public void onAnimationStart(Animator animation) {
278 public void onAnimationCancel(Animator animation) {
283 public void onAnimationEnd(Animator animatio
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailClipper.java19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
32 private Animator mAnimator;
86 public void onAnimationStart(Animator animation) {
90 public void onAnimationEnd(Animator animation) {
97 public void onAnimationEnd(Animator animation) {
/frameworks/support/design/ics/android/support/design/widget/
H A DFloatingActionButtonIcs.java19 import android.animation.Animator;
72 public void onAnimationStart(Animator animation) {
79 public void onAnimationCancel(Animator animation) {
85 public void onAnimationEnd(Animator animation) {
117 public void onAnimationStart(Animator animation) {
122 public void onAnimationEnd(Animator animation) {
/frameworks/base/core/java/android/transition/
H A DChangeScroll.java19 import android.animation.Animator;
59 public Animator createAnimator(ViewGroup sceneRoot, TransitionValues startValues,
69 Animator scrollXAnimator = null;
70 Animator scrollYAnimator = null;
H A DFade.java19 import android.animation.Animator;
116 * Utility method to handle creating and running the Animator.
118 private Animator createAnimation(final View view, float startAlpha, final float endAlpha) {
139 public Animator onAppear(ViewGroup sceneRoot, View view,
155 public Animator onDisappear(ViewGroup sceneRoot, final View view, TransitionValues startValues,
181 public void onAnimationStart(Animator animator) {
189 public void onAnimationEnd(Animator animator) {
H A DTranslationAnimationCreator.java20 import android.animation.Animator;
51 static Animator createAnimation(View view, TransitionValues values, int viewPosX, int viewPosY,
113 public void onAnimationCancel(Animator animation) {
123 public void onAnimationEnd(Animator animator) {
127 public void onAnimationPause(Animator animator) {
135 public void onAnimationResume(Animator animator) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DReferenceCountedTrigger.java19 import android.animation.Animator;
113 public Animator.AnimatorListener decrementOnAnimationEnd() {
118 public void onAnimationEnd(Animator animation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/views/
H A DTaskStackHorizontalViewAdapter.java18 import android.animation.Animator;
78 private Animator.AnimatorListener getRemoveAtListener(final int position,
80 return new Animator.AnimatorListener() {
83 public void onAnimationStart(Animator animation) { }
86 public void onAnimationEnd(Animator animation) {
92 public void onAnimationCancel(Animator animation) { }
95 public void onAnimationRepeat(Animator animation) { }
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DAnimationProps.java19 import android.animation.Animator;
60 private Animator.AnimatorListener mListener;
80 Animator.AnimatorListener listener) {
97 Animator.AnimatorListener listener) {
108 public AnimatorSet createAnimator(List<Animator> animators) {
236 public AnimationProps setListener(Animator.AnimatorListener listener) {
244 public Animator.AnimatorListener getListener() {
/frameworks/base/packages/SystemUI/src/com/android/systemui/tv/pip/
H A DPipRecentsControlsView.java19 import android.animation.Animator;
55 private Animator mFocusGainAnimator;
95 private Animator loadAnimator(View view, int animatorResId) {
96 Animator animator = AnimatorInflater.loadAnimator(getContext(), animatorResId);
142 private static void startAnimator(Animator animator, Animator previousAnimator) {
149 private static void cancelAnimator(Animator animator) {
/frameworks/base/core/java/com/android/internal/widget/
H A DDrawableHolder.java21 import android.animation.Animator;
24 import android.animation.Animator.AnimatorListener;
210 public void onAnimationCancel(Animator animation) {
214 public void onAnimationEnd(Animator animation) {
218 public void onAnimationRepeat(Animator animation) {
222 public void onAnimationStart(Animator animation) {
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAutoCancelTest.java36 HashMap<Animator, Boolean> mCanceledMap = new HashMap<Animator, Boolean>();
75 public void onAnimationStart(Animator animation) {
90 public void onAnimationStart(Animator animation) {
102 public void onAnimationEnd(Animator animation) {
189 public void onAnimationCancel(Animator animation) {

Completed in 535 milliseconds

1234567