0

の 2 つの列にまたがってストレッチするにはどうすればよいですかTableLayout。ラベル付きの 2 つの行があり、1 つの行にテキストを編集します。1 つのボタンを 2 行目全体に広げたいと考えています。

<?xml version="1.0" encoding="utf-8"?>
<TableLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent" 
    android:layout_width="fill_parent"
    android:background="#000000"
    android:stretchColumns="1">

    <TableRow>
        <TextView
            android:text = "Name: "  />
        <EditText
            android:id = "@+id/txtAddName"
            android:gravity = "right"
            android:layout_width = "fill_parent" />
    </TableRow>
    <TableRow>
        <TextView
            android:text = "Phone: "  />
        <EditText
            android:id = "@+id/txtAddPhone"
            android:gravity = "right"
            android:layout_width = "fill_parent" />        
    </TableRow>
    <TableRow>
        <Button
            android:id = "@+id/btnAdd"
            android:text = "Add Entrie"
            android:layout_width = "fill_parent" />
    </TableRow>
    <TableRow>
        <Button
            android:id = "@+id/btnShow"
            android:text = "Show all Entries"
            android:layout_width = "fill_parent" />
    </TableRow>
    <TableRow>
        <Button
            android:id = "@+id/btnDelete"
            android:text = "Delete all Entries"
            android:layout_width = "fill_parent" />
    </TableRow>
</TableLayout>
4

1 に答える 1

1

ここで例を確認してください:http://www.droidnova.com/tablelayout-supports-column-span,105.html

于 2010-12-22T11:47:30.943 に答える