我在GridLayout中使用GridView。 但它已经扩展到设备的高度以下。 有什么特别的原因吗? 我到处寻找类似的问题,但还没找到任何东西。
这是axml的代码......我正在使用Xamarin。
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridLayout1"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchMode="spacingWidthUniform"
android:gravity="center"
android:rowCount="6"
android:columnCount="2">
<GridView
android:id="@+id/gridView"
android:numColumns="auto_fit"
android:gravity="center"
android:stretchMode="columnWidth"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_columnSpan="2"
android:layout_row="4"
android:layout_column="0" />
答案 0 :(得分:1)
使用&#34; android:layout_below&#34;像这样:
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridLayout1"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchMode="spacingWidthUniform"
android:gravity="center"
android:rowCount="6"
android:columnCount="2"
android:layout_below="@id/headerRelativeLayout">
<GridView
android:id="@+id/gridView"
android:numColumns="auto_fit"
android:gravity="center"
android:stretchMode="columnWidth"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_columnSpan="2"
android:layout_row="4"
android:layout_column="0" />
</GridLayout>