为什么GridLayout中的GridView被扩展到低于设备的高度(GridLayout)?

时间:2014-12-27 18:55:17

标签: android gridview xamarin

我在GridLayout中使用GridView。 但它已经扩展到设备的高度以下。 有什么特别的原因吗? 我到处寻找类似的问题,但还没找到任何东西。

ScreenShot

这是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" />

1 个答案:

答案 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>