Lines Matching refs:DragView
102 /** The window token used as the parent for the DragView. */
213 public DragView startDrag(Bitmap b, int dragLayerX, int dragLayerY,
242 final DragView dragView = mDragObject.dragView = new DragView(mLauncher, b, registrationX,
254 mDragObject.stateAnnouncer = DragViewStateAnnouncer.createFor(dragView);
261 dragView.setDragVisualizeOffset(new Point(dragOffset));
264 dragView.setDragRegion(new Rect(dragRegion));
268 dragView.show(mMotionDownX, mMotionDownY);
270 return dragView;
372 if (mDragObject.dragView != null) {
375 mDragObject.dragView.remove();
377 mDragObject.dragView = null;
394 void onDeferredEndDrag(DragView dragView) {
395 dragView.remove();
508 mDragObject.dragView.move(x, y);
829 DragView getDragView() {
830 return mDragObject.dragView;