GridLayout不会显示在网格中

时间:2013-07-08 20:43:28

标签: java android xml android-support-library android-gridlayout

我正在使用gridLayout来简单地显示2x2布局。我稍后会增加它,但我只是想让一个样本工作。截至目前,他们排成一排。只要看看我的xml,有没有人看到任何明显我做错的事情?我的代码编译,我的xml“验证”。感谢

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:grid="http://schemas.android.com/apk/res-auto"
    xmlns:app="http://schemas.android.com/apk/res/com.test.example"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <android.support.v7.widget.GridLayout
        android:id="@+id/GridLayout1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:columnCount="2"
        android:rowCount="2" >

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button" />
    </android.support.v7.widget.GridLayout>

    <EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:ems="10" />

</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

GridLayout的文档指定在配置GridLayout的子项时,您不需要使用任何特殊大小值:WRAP_CONTENT或MATCH_PARENT。在摘要here

中指定

答案 1 :(得分:0)

我之前从未使用GridLayout,但是从示例here开始,您需要在需要新行开始时指定android:layout_column="0"属性。我建议你阅读完整的文章。