woxblom / DragListView

Drag and drop to reorder items in a list, grid or board for Android. Based on RecyclerView. Also supports swiping items in a list.
Apache License 2.0
693 stars 177 forks source link

Setting Different items for different column's #192

Closed KallepalliTirumalesh closed 3 years ago

KallepalliTirumalesh commented 3 years ago

HI, Thank You for wonderful library Is it possible to define different items for different column's like for example one column has 10 items and other column has 6 items and swapping items between the column's.

woxblom commented 3 years ago

Hey and thanks :)

Yes that shouldnt be any problem. As long as the super class of the items are the same as you need to be able to move the item from one adapter to another of the same type.

KallepalliTirumalesh commented 3 years ago

Hey and thanks :)

Yes that shouldnt be any problem. As long as the super class of the items are the same as you need to be able to move the item from one adapter to another of the same type.

Thank You