如何使用android:stretchMode =“ columnWidth”通过单元格填充GridView的整个宽度和高度?

时间:2018-08-23 05:37:20

标签: java android user-interface gridview layout

我想创建宽度和高度不同(但相似)的网格单元,以便它们覆盖父视图的整个可用区域。例如:

parent width is 33
grid cells: width 10, width 10, width 13

这是我当前正在获得的代码:

enter image description here

GridView的XML代码:

<GridView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/calendar_gridview"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:numColumns="7"
    android:stretchMode="columnWidth"
    style="?styleCaldroidGridView" />

即使android:gravity="center"android:scaleType="fitXY"都不是解决方法。

P.S。我正在尝试在Caldroid日历中解决此问题。

0 个答案:

没有答案