fun onMove(recyclerView: RecyclerView, viewHolder: ViewHolder, target: ViewHolder): Boolean
Called when ItemTouchHelper wants to move the dragged item from its old position to the new position.
recyclerView
- The RecyclerView to which ItemTouchHelper is attached to.
viewHolder
- The ViewHolder which is being dragged by the user.
target
- The ViewHolder over which the currently active item is being dragged.
Return
True if the viewHolder has been moved to the adapter position.
See Also