gpt4 book ai didi

android - 每行具有不同列数的 GridLayoutManager

转载 作者:太空狗 更新时间:2023-10-29 16:29:29 24 4
gpt4 key购买 nike

我正在尝试使用 GridLayoutManager 构建一个 RecyclerView,它的每行列数可变,如下所示:

enter image description here

同一行中所有项目的宽度之和始终是屏幕宽度。

我尝试重新组织项目列表,按行列表对它们进行分组,然后为每行增加一个 LinearLayout。效果不是很好。

所以我被困住了,没有想法。任何帮助将不胜感激

最佳答案

您可以使用 GridLayoutManager。要在行中有不同的列数,您必须覆盖 setSpanSizeLookup .

例子:

//spanCount = 3 (just for example)
GridLayoutManager gridLayoutManager = new GridLayoutManager(getAppContext(), spanCount);
gridLayoutManager.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup() {
@Override
public int getSpanSize(int position) {
//define span size for this position
//some example for your first three items
if(position == item1) {
return 1; //item will take 1/3 space of row
} else if(position == item2) {
return 2; //you will have 2/3 space of row
} else if(position == item3) {
return 3; //you will have full row size item
}
}
});

我上面的代码示例只是展示了您可以更改项目大小。注意 spanSize <= spanCount

关于android - 每行具有不同列数的 GridLayoutManager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42629963/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com