Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 407 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 407 Bytes

RecyclerViewDragSelect

DragSelectTouchHandler touchHandler = new DragSelectTouchHandler(recyclerview, new DragSelectListener() {
    @Override
    public boolean isSelected(int index) {
	return adapter.isSelected(index);
    }

    @Override
    public void onSetSelect(int start, int end, boolean select) {
	// update
    }
});
dragRV.addOnItemTouchListener(touchHandler);