Home | History | Annotate | Download | only in launcher2

Lines Matching refs:animator

19 import android.animation.Animator;
30 static HashSet<Animator> sAnimators = new HashSet<Animator>();
31 static Animator.AnimatorListener sEndAnimListener = new Animator.AnimatorListener() {
32 public void onAnimationStart(Animator animation) {
35 public void onAnimationRepeat(Animator animation) {
38 public void onAnimationEnd(Animator animation) {
42 public void onAnimationCancel(Animator animation) {
47 public static void cancelOnDestroyActivity(Animator a) {
54 public static void startAnimationAfterNextDraw(final Animator animator, final View view) {
61 if (animator.getDuration() == 0) {
64 animator.start();
77 HashSet<Animator> animators = new HashSet<Animator>(sAnimators);
78 for (Animator a : animators) {