答案 0 :(得分:2)
试试这个
android:numColumns="auto_fit"
auto_fit 显示尽可能多的列以填充可用空间。
答案 1 :(得分:0)
查看recent-images图书馆。它提供水平网格视图(一行)。只需添加此库依赖项并将下面的代码放在xml中。
<com.jess.ui.TwoWayGridView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="#E8E8E8"
android:id="@+id/gridview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
app:columnWidth="70dp"
app:rowHeight="70dp"
app:numColumns="auto_fit"
app:numRows="auto_fit"
app:verticalSpacing="16dp"
app:horizontalSpacing="16dp"
app:gravity="center"/>