Home
last modified time | relevance | path

Searched refs:mDropAnim (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DDragLayer.java83 private ValueAnimator mDropAnim = null; field in DragLayer
423 if (mDropAnim != null) mDropAnim.cancel(); in animateView()
437 mDropAnim = new ValueAnimator(); in animateView()
438 mDropAnim.setInterpolator(interpolator); in animateView()
439 mDropAnim.setDuration(duration); in animateView()
440 mDropAnim.setFloatValues(0f, 1f); in animateView()
441 mDropAnim.addUpdateListener(updateCb); in animateView()
442 mDropAnim.addListener(new AnimatorListenerAdapter() { in animateView()
454 mDropAnim = null; in animateView()
457 mDropAnim.start(); in animateView()
[all …]