表填充无法用按钮填充行

时间:2013-03-04 01:01:52

标签: android button fill android-tablelayout

我试图用一个按钮填充表格的第一行..第二行用两个按钮分开,但我不能这样做.. 看起来总是这样:

http://s12.postimage.org/4y5qjxcod/table.png

我已经添加了这些行:     机器人:stretchColumns = “”     android:shrinkColumns =“

有什么线索的原因?这就是我的XML目前的方式:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tableLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:stretchColumns="*"
    android:shrinkColumns="*" >

    <!-- 1 column -->
    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <Button
            android:id="@+id/button1"
            android:text="Column 2" />
    </TableRow>

    <!-- 2 columns -->
    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <Button
            android:id="@+id/button2"
            android:text="Column 3" />

        <Button
            android:id="@+id/button3"
            android:text="Column 4" />
    </TableRow>





</TableLayout>

1 个答案:

答案 0 :(得分:1)

将android:layout_span =“2”添加到您的第一个按钮:

<Button
     android:id="@+id/button1"
     android:layout_span="2"    
     android:text="Column 2" />