Search code examples
androidandroid-recyclerviewscrollhorizontal-scrollingsmooth-scrolling

How to scroll item by item in RecyclerView


How to scroll item by item in horizontal RecyclerView? I don't want to scroll or smoothScroll all of the items in RecyclerView.


Solution

  • val snapHelper = PagerSnapHelper()
    snapHelper.attachToRecyclerView(recyclerView)
    

    it really works, but you can also use the ViewPager for small lists