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.java72 private ValueAnimator mDropAnim = null; field in DragLayer
415 if (mDropAnim != null) mDropAnim.cancel(); in animateView()
429 mDropAnim = new ValueAnimator(); in animateView()
430 mDropAnim.setInterpolator(interpolator); in animateView()
431 mDropAnim.setDuration(duration); in animateView()
432 mDropAnim.setFloatValues(0f, 1f); in animateView()
433 mDropAnim.addUpdateListener(updateCb); in animateView()
434 mDropAnim.addListener(new AnimatorListenerAdapter() { in animateView()
446 mDropAnim = null; in animateView()
449 mDropAnim.start(); in animateView()
[all …]