1

I m stuck with SnapHelper for RecyclerView. I m confused to use it with LayoutManager in Vertical

I already used in Horizontal like

mLayoutManager = new LinearLayoutManager(mActivity);
mRecyclerView.setLayoutManager(mLayoutManager);
SnapHelper snapHelper = new LinearSnapHelper();
snapHelper.attachToRecyclerView(mRecyclerView);
Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Nilesh
  • 1,013
  • 14
  • 21

1 Answers1

1

I found this solution maybe help. https://rubensousa.github.io/2016/08/recyclerviewsnap

As you can see, he said to make sure you set the orientation of layout manager.

Bamz3r
  • 177
  • 2
  • 7