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

  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DragLayer.java 76 private ValueAnimator mDropAnim = null;
432 if (mDropAnim != null) mDropAnim.cancel();
446 mDropAnim = new ValueAnimator();
447 mDropAnim.setInterpolator(interpolator);
448 mDropAnim.setDuration(duration);
449 mDropAnim.setFloatValues(0f, 1f);
450 mDropAnim.addUpdateListener(updateCb);
451 mDropAnim.addListener(new AnimatorListenerAdapter() {
463 mDropAnim = null
    [all...]
  /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...]

Completed in 59 milliseconds