gpt4 book ai didi

android - 如何设置具有不同列大小的 Android GridView

转载 作者:太空宇宙 更新时间:2023-11-03 10:25:48 56 4
gpt4 key购买 nike

我的主布局中有一个 GridView,如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<GridView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:horizontalSpacing="1dp"
android:stretchMode="columnWidth"
android:verticalSpacing="1dp" />

</LinearLayout>

产生这样的网格 enter image description here

每个单元格的内容是这样的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/btn_measurement" >

<Button
android:id="@+id/numerical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="---" />

</LinearLayout>

但我希望第 4 列是其他列的三分之一,但我做不到。

我检查了链接:

GridView with different column sizesAndroid GridView Column Stretching

但他们没有任何帮助。 :(

如果您认为我需要完全更改我的解决方案,请提供比仅提供一般线索更准确的信息。谢谢

最佳答案

将 RecyclerView(而不是 GridView)与自定义 GridLayoutManager 结合使用,如“可变跨度大小”下所示: http://blog.sqisland.com/2014/12/recyclerview-grid-with-header.html

您基本上会让每个常规列占用 3 倍,而较小的列占用 1 倍。

GridLayoutManager manager = new GridLayoutManager(this, 10); // 3 cols of 3 + 1 col of 1
manager.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup() {
@Override
public int getSpanSize(int position) {
if (position % 4 == 3)
return 1; // Fourth column is 1x
else
return 3; // Remaining columns are 3x
}
});
recyclerView.setLayoutManager(manager);

关于android - 如何设置具有不同列大小的 Android GridView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12861606/

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