带有 Recyclerview 的 Gridlayoutmanager android
Gridlayout Manager With Recycerview android
我想使用 Recycerview.but 创建这种类型的布局,我遇到了一些问题。
recyclerView.setLayoutManager(new GridLayoutManager(parentActivity, 2));
使用上面的行,我在 2 列中显示了列表。但是当某些视图的高度很小然后变得空白时 space。我想删除那个空白 space。
发布截图:
请提供删除 space 的解决方案。
您可以使用StaggeredGridLayoutManager
sGManager = new StaggeredGridLayoutManager(2, 1);
recyclerView.setLayoutManager(gaggeredGridLayoutManager)
见http://inducesmile.com/android/android-staggeredgridlayoutmanager-example-tutorial/
我想使用 Recycerview.but 创建这种类型的布局,我遇到了一些问题。
recyclerView.setLayoutManager(new GridLayoutManager(parentActivity, 2));
使用上面的行,我在 2 列中显示了列表。但是当某些视图的高度很小然后变得空白时 space。我想删除那个空白 space。
发布截图:
请提供删除 space 的解决方案。
您可以使用StaggeredGridLayoutManager
sGManager = new StaggeredGridLayoutManager(2, 1);
recyclerView.setLayoutManager(gaggeredGridLayoutManager)
见http://inducesmile.com/android/android-staggeredgridlayoutmanager-example-tutorial/