I have a custom mime type which I am intending to use to drag and drop application objects within the app. This seems to be working but I\'m finding that the EditText fields ar
You may write
edit.setEnabled(false); edit.setFocusable(false);
just after calling startDrag(), and restore old values for that particular editText control just after DragEvent.ACTION_DRAG_ENDED.
startDrag()
editText
DragEvent.ACTION_DRAG_ENDED
But, honestly, this is quite dirty approach.