HomeSort by relevance Sort by last modified time
    Searched refs:mDropAnim (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 63 private ValueAnimator mDropAnim = null;
638 if (mDropAnim != null) mDropAnim.cancel();
653 mDropAnim = new ValueAnimator();
654 mDropAnim.setInterpolator(interpolator);
655 mDropAnim.setDuration(duration);
656 mDropAnim.setFloatValues(0f, 1f);
657 mDropAnim.addUpdateListener(updateCb);
658 mDropAnim.addListener(new AnimatorListenerAdapter() {
675 mDropAnim.start()
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
DragLayer.java 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()
    [all...]

Completed in 3137 milliseconds