Lines Matching refs:mDropView
73 @Thunk DragView mDropView = null; field in DragLayer
726 int xPos = x - mDropView.getScrollX() + anchorAdjust; in animateView()
727 int yPos = y - mDropView.getScrollY(); in animateView()
729 mDropView.setTranslationX(xPos); in animateView()
730 mDropView.setTranslationY(yPos); in animateView()
731 mDropView.setScaleX(scaleX); in animateView()
732 mDropView.setScaleY(scaleY); in animateView()
733 mDropView.setAlpha(alpha); in animateView()
747 mDropView = view; in animateView()
748 mDropView.cancelAnimation(); in animateView()
749 mDropView.resetLayoutParams(); in animateView()
784 if (mDropView != null) { in clearAnimatedView()
785 mDragController.onDeferredEndDrag(mDropView); in clearAnimatedView()
787 mDropView = null; in clearAnimatedView()
792 return mDropView; in getAnimatedView()