Home | History | Annotate | Download | only in launcher3

Lines Matching refs:mDropAnim

71     private ValueAnimator mDropAnim = null;
744 if (mDropAnim != null) mDropAnim.cancel();
758 mDropAnim = new ValueAnimator();
759 mDropAnim.setInterpolator(interpolator);
760 mDropAnim.setDuration(duration);
761 mDropAnim.setFloatValues(0f, 1f);
762 mDropAnim.addUpdateListener(updateCb);
763 mDropAnim.addListener(new AnimatorListenerAdapter() {
777 mDropAnim.start();
781 if (mDropAnim != null) {
782 mDropAnim.cancel();