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

Snap to Column when item clicked #174

Closed nvhaiwork closed 4 years ago

nvhaiwork commented 4 years ago

I just tried but cant find out how to snap to a column when an item(or header)clicked.

For example I want to move Column 5 to centre screen when click on Column 5 header(or item )

Screen Shot 2020-10-01 at 20 06 21
woxblom commented 4 years ago

Hm don't really understand. Do you mean that you want to scroll to column number 5 when clicking on an item?

nvhaiwork commented 4 years ago

Yes, scroll to column number 5 when clicking on an item in column 5 or column 5's header

woxblom commented 4 years ago

Use the scrollToColumn() method on BoardView

nvhaiwork commented 4 years ago

scrollToColumn

Thanks, I'll check