我正在努力实现我的GridView的第一列比其他四个更宽:
正如您在屏幕截图中看到的那样,第一列的宽度不足以显示整个日期而没有换行符。由于其他四列中还剩下一些空间,我想缩小它们并给第一列增加一点宽度。
目前,我正在使用带有simple_list_item_1的ArrayAdapter来实现我当前的结果。
ArrayAdapter adapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, values);
testView.setAdapter(adapter);
我对GridView的XML看起来像这样:
<GridView
android:id="@+id/testView"
android:background="#eee"
android:numColumns="5"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginEnd="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginStart="0dp"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginTop="2dp"
app:layout_constraintTop_toBottomOf="@+id/button3"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="8dp" />
如何以合理的方式解决这个问题?
修改 我不想像可能重复的那样更改所有列的大小。我只是想改变第一个的大小。
答案 0 :(得分:2)
使用跨度大小来获得所需的列大小。
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);
这只是使用span的示例,而不是您的场景的解决方案。
希望这会对你有所帮助。