在android布局中组织按钮

时间:2015-10-30 12:30:21

标签: android android-layout

我正在使用LinearLayout来设计我的fragment

我想在布局中添加按钮,当它到达行尾时,我想添加换行符并继续在行底部。

我该怎么做?

Fourth element it is ok

I want to put the fifth element to the next line

1 个答案:

答案 0 :(得分:2)

我建议您使用TableLayout,否则GridView

<TableLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:stretchColumns="1"
    android:shrinkColumns="0"
    >
    <TableRow>
        <Button android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            />
        <Button android:id="@+id/date"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"

            />
            ..................
    </TableRow>
</TableLayout>