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

12

/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 {
30 public void onAnimationCancel(Animator animation) {
37 public void onAnimationEnd(Animator animation) {
44 public void onAnimationRepeat(Animator animation) {
51 public void onAnimationStart(Animator animation) {
H A DAnimator.java25 public abstract class Animator implements Cloneable { class in inherits:Cloneable
37 * {@link AnimatorListener#onAnimationStart(Animator)} for any listeners of this animator.
52 * {@link android.animation.Animator.AnimatorListener#onAnimationCancel(Animator)} to
54 * {@link android.animation.Animator.AnimatorListener#onAnimationEnd(Animator)} message.
64 * {@link android.animation.Animator.AnimatorListener#onAnimationEnd(Animator)} method on
94 public abstract Animator setDuration(long duration);
114 * Returns whether this Animator i
[all...]
H A DLayoutTransition.java37 * custom animations, use the {@link LayoutTransition#setAnimator(int, Animator)
144 private Animator mDisappearingAnim = null;
145 private Animator mAppearingAnim = null;
146 private Animator mChangingAppearingAnim = null;
147 private Animator mChangingDisappearingAnim = null;
148 private Animator mChangingAnim = null;
210 private final HashMap<View, Animator> pendingAnimations =
211 new HashMap<View, Animator>();
212 private final LinkedHashMap<View, Animator> currentChangingAnimations =
213 new LinkedHashMap<View, Animator>();
[all...]
H A DAnimatorSet.java25 * This class plays a set of {@link Animator} objects in the specified order. Animations
29 * either the {@link AnimatorSet#playTogether(Animator[]) playTogether()} or
30 * {@link AnimatorSet#playSequentially(Animator[]) playSequentially()} methods can be called to add
31 * a set of animations all at once, or the {@link AnimatorSet#play(Animator)} can be
50 public final class AnimatorSet extends Animator {
63 private ArrayList<Animator> mPlayingSet = new ArrayList<Animator>();
67 * dependency information is added for an Animator, we want to add it
68 * to a single node representing that Animator, not create a new Node
71 private HashMap<Animator, Nod
[all...]
H A DAnimatorInflater.java34 * This class is used to instantiate animator XML files into Animator objects.
59 * Loads an {@link Animator} object from a resource
66 public static Animator loadAnimator(Context context, int id)
90 private static Animator createAnimatorFromXml(Context c, XmlPullParser parser)
96 private static Animator createAnimatorFromXml(Context c, XmlPullParser parser,
100 Animator anim = null;
101 ArrayList<Animator> childAnims = null;
134 childAnims = new ArrayList<Animator>();
140 Animator[] animsArray = new Animator[childAnim
[all...]
/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/base/packages/SystemUI/src/com/android/systemui/recent/
H A DChoreographer.java19 import android.animation.Animator;
32 /* package */ class Choreographer implements Animator.AnimatorListener {
47 Animator.AnimatorListener mListener;
53 View noRecentApps, Animator.AnimatorListener listener) {
77 Animator posAnim = ObjectAnimator.ofFloat(mContentView, "translationY",
84 Animator fadeAnim = ObjectAnimator.ofFloat(mContentView, "alpha",
91 Animator noRecentAppsFadeAnim = null;
112 Animator bgAnim = ObjectAnimator.ofInt(background,
126 Animator bgAnim = ObjectAnimator.ofInt(bgDrawable, "alpha", 0, 255);
171 public void onAnimationCancel(Animator animatio
[all...]
H A DRecentsPanelView.java19 import android.animation.Animator;
71 StatusBarPanel, Animator.AnimatorListener, View.OnTouchListener {
383 public void onAnimationCancel(Animator animation) {
386 public void onAnimationEnd(Animator animation) {
397 public void onAnimationRepeat(Animator animation) {
400 public void onAnimationStart(Animator animation) {
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java19 import android.animation.Animator;
41 * details of configuring the underlying Animator class and starting it.</p>
57 * The duration of the underlying Animator object. By default, we don't set the duration
58 * on the Animator and just use its default duration. If the duration is ever set on this
59 * Animator, then we use the duration that it was set to.
65 * the duration on the underlying Animator, but instead just use its default duration.
70 * The startDelay of the underlying Animator object. By default, we don't set the startDelay
71 * on the Animator and just use its default startDelay. If the startDelay is ever set on this
72 * Animator, then we use the startDelay that it was set to.
78 * the startDelay on the underlying Animator, bu
[all...]
/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) {
H A DAbsActionBarView.java22 import android.animation.Animator;
42 protected Animator mVisibilityAnim;
242 protected class VisibilityAnimListener implements Animator.AnimatorListener {
252 public void onAnimationStart(Animator animation) {
259 public void onAnimationEnd(Animator animation) {
270 public void onAnimationCancel(Animator animation) {
275 public void onAnimationRepeat(Animator animation) {
H A DSizeAdaptiveLayout.java23 import android.animation.Animator;
24 import android.animation.Animator.AnimatorListener;
128 public Animator getTransitionAnimation() {
410 public void onAnimationEnd(Animator animation) {
423 public void onAnimationCancel(Animator animation) {
428 public void onAnimationRepeat(Animator animation) {
434 public void onAnimationStart(Animator animation) {
H A DActionBarContextView.java23 import android.animation.Animator;
24 import android.animation.Animator.AnimatorListener;
61 private Animator mCurrentAnimation;
268 final Animator a = mCurrentAnimation;
402 private Animator makeInAnimation() {
429 private Animator makeOutAnimation() {
491 public void onAnimationStart(Animator animation) {
495 public void onAnimationEnd(Animator animation) {
503 public void onAnimationCancel(Animator animation) {
507 public void onAnimationRepeat(Animator animatio
[all...]
H A DScrollingTabContainerView.java20 import android.animation.Animator;
61 protected Animator mVisibilityAnim;
498 protected class VisibilityAnimListener implements Animator.AnimatorListener {
508 public void onAnimationStart(Animator animation) {
515 public void onAnimationEnd(Animator animation) {
523 public void onAnimationCancel(Animator animation) {
528 public void onAnimationRepeat(Animator animation) {
/frameworks/base/core/tests/coretests/src/android/animation/
H A DEventsTest.java28 * concrete implementations that provide the actual Animator objects being tested. All of the
50 protected Animator.AnimatorListener mFutureListener; // mechanism for delaying the end of the test
52 private Animator.AnimatorListener mListener; // Listener that handles/tests the events
54 protected Animator mAnimator; // The animator used in the tests. Must be set in subclass
62 Animator mAnim;
64 public Canceler(Animator anim, FutureWaiter future) {
90 Animator mAnim;
92 public Ender(Animator anim, FutureWaiter future) {
135 public void onAnimationEnd(Animator animation) {
164 public void onAnimationStart(Animator animatio
[all...]
H A DViewPropertyAnimatorTest.java31 * concrete implementations that provide the actual Animator objects being tested. All of the
53 protected Animator.AnimatorListener mFutureListener; // mechanism for delaying the end of the test
55 private Animator.AnimatorListener mListener; // Listener that handles/tests the events
117 public void onAnimationEnd(Animator animation) {
151 public void onAnimationStart(Animator animation) {
159 public void onAnimationCancel(Animator animation) {
169 public void onAnimationEnd(Animator animation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DNotificationPanel.java19 import android.animation.Animator;
263 Animator a = ObjectAnimator.ofFloat(toHide, "alpha", 1f, 0f)
267 public void onAnimationEnd(Animator _a) {
334 private class Choreographer implements Animator.AnimatorListener {
370 Animator posAnim = ObjectAnimator.ofFloat(mContentParent, "translationY",
378 Animator fadeAnim = ObjectAnimator.ofFloat(mContentParent, "alpha",
403 public void onAnimationCancel(Animator animation) {
407 public void onAnimationEnd(Animator animation) {
419 public void onAnimationRepeat(Animator animation) {
422 public void onAnimationStart(Animator animatio
[all...]
H A DShirtPocket.java19 import android.animation.Animator;
84 public void onAnimationEnd(Animator _a) {
90 Animator a = ObjectAnimator.ofFloat(this, "alpha", getAlpha(), 0f);
H A DNotificationLinearLayout.java19 import android.animation.Animator;
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java24 import android.animation.Animator.AnimatorListener;
25 import android.animation.Animator;
44 private static void remove(Animator animator) {
143 public void onAnimationEnd(Animator animation) {
148 public void onAnimationCancel(Animator animation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java19 import android.animation.Animator;
22 import android.animation.Animator.AnimatorListener;
286 public void onAnimationEnd(Animator animation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DIntruderAlertView.java19 import android.animation.Animator;
/frameworks/base/core/java/android/app/
H A DFragmentManager.java19 import android.animation.Animator;
678 Animator loadAnimator(Fragment fragment, int transit, boolean enter,
680 Animator animObj = fragment.onCreateAnimator(transit, enter,
687 Animator anim = AnimatorInflater.loadAnimator(mActivity, fragment.mNextAnim);
834 Animator anim = loadAnimator(f, transit, true,
925 Animator anim = null;
939 public void onAnimationEnd(Animator anim) {
967 Animator anim = f.mAnimatingAway;
1139 Animator anim = loadAnimator(fragment, transition, true,
1148 public void onAnimationEnd(Animator animatio
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java29 import android.animation.Animator;
30 import android.animation.Animator.AnimatorListener;
119 private Animator mCurrentShowAnim;
124 public void onAnimationEnd(Animator animation) {
144 public void onAnimationEnd(Animator animation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java19 import android.animation.Animator;
449 public void onAnimationEnd(Animator animation) {
495 public void onAnimationStart(Animator animation) {
508 public void onAnimationEnd(android.animation.Animator animation) {
534 public void onAnimationEnd(Animator animation) {

Completed in 1410 milliseconds

12