How to snap RecyclerView items so that every X items would be considered like a single unit to snap to?

SnapHelper supplies the necessary framework for what you are attempting, but it needs to be extended to handle blocks of views. The class SnapToBlock below extends SnapHelper to snap to blocks of views. In the example, I have used four views to a block but it can be more or less. Update: The code has … Read more