rubensousa / GravitySnapHelper

A SnapHelper that snaps a RecyclerView to an edge.
Apache License 2.0
5k stars 614 forks source link

How to scroll to postion with Snap? #27

Closed LoveqLRC closed 6 years ago

LoveqLRC commented 7 years ago

I use the mLayoutManager.scrollToPositionWithOffset(1, 0); method,but the snap effect not work well.

rubensousa commented 6 years ago

Seems like these work fine with snap:

recyclerView.smoothScrollBy(400,0)
recyclerView.smoothScrollToPosition(6);
LoveqLRC commented 6 years ago

Thanks for your answer. I solved this problem in another way.