如何在 RecyclerView 中排列项目?
How to arrange item in recyclerview?
我在 RecyclerView 中使用 GridLayoutManager。我的商品排列为
a1 b1 c1
a2 b2 c2
a3 b3 c3
但我想这样安排
a1 a2 a3
b1 b2 b3
c1 c2 c3
根据我的观点,您已经在 GridLayoutManager 中设置了 orientation 和 reverselayout,将它们都删除并尝试这样做
new GridLayoutManager(this, 3, GridLayoutManager.HORIZONTAL, true);
使用它
new GridLayoutManager(this, 3);
我在 RecyclerView 中使用 GridLayoutManager。我的商品排列为
a1 b1 c1
a2 b2 c2
a3 b3 c3
但我想这样安排
a1 a2 a3
b1 b2 b3
c1 c2 c3
根据我的观点,您已经在 GridLayoutManager 中设置了 orientation 和 reverselayout,将它们都删除并尝试这样做
new GridLayoutManager(this, 3, GridLayoutManager.HORIZONTAL, true);
使用它
new GridLayoutManager(this, 3);