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;
762 if (mDropAnim != null) mDropAnim.cancel();
776 mDropAnim = new ValueAnimator();
777 mDropAnim.setInterpolator(interpolator);
778 mDropAnim.setDuration(duration);
779 mDropAnim.setFloatValues(0f, 1f);
780 mDropAnim.addUpdateListener(updateCb);
781 mDropAnim.addListener(new AnimatorListenerAdapter() {
795 mDropAnim.start()
    [all...]

Completed in 203 milliseconds