1

我被 RecyclerView 的 SnapHelper 卡住了。我很困惑在垂直中将它与 LayoutManager 一起使用

我已经在水平中使用过

mLayoutManager = new LinearLayoutManager(mActivity);
mRecyclerView.setLayoutManager(mLayoutManager);
SnapHelper snapHelper = new LinearSnapHelper();
snapHelper.attachToRecyclerView(mRecyclerView);
4

1 回答 1

1

我发现这个解决方案可能会有所帮助。https://rubensousa.github.io/2016/08/recyclerviewsnap

如您所见,他说要确保您设置布局管理器的方向。

于 2016-10-25T12:25:02.860 回答