0

我正在使用 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>
4

2 回答 2

1

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

于 2013-07-08T21:45:35.597 回答
0

我以前从未使用GridLayout过,但是从这里的示例看来,android:layout_column="0"当您希望新行开始时,您需要指定一个属性。我建议您阅读全文。

于 2013-07-08T21:03:47.237 回答