使用TableLayout跨越列

时间:2011-08-27 05:57:07

标签: android android-tablelayout

  

可能重复:
  What is the equivalent of “colspan” in an Android TableLayout?

它在TableLayout的文档中说“单元格可以跨越列,就像它们可以在HTML中一样”。但是,我找不到任何办法。

具体来说,我有一行有两列,另一行有一列。我希望一列行跨越整个表。看起来很简单,但我看不到它。

2 个答案:

答案 0 :(得分:68)

添加android:layout_span =“3”以跨越3列。 例如:

        <TableRow>
            <Button android:id="@+id/item_id"
                android:layout_span="2"
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:text="item text" />     
        </TableRow>

答案 1 :(得分:2)

android:layout_span可以解决问题。

示例:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow>
    <TextView android:id="@+id/info"
        android:layout_span="2"
        android:text="some text"
        android:padding="3dip"
        android:layout_gravity="center_horizontal" />
</TableRow>
<TableRow>
    <TextView android:text="some other text" 
        android:padding="3dip" />
    <TextView android:text="more text" 
        android:padding="3dip" />
</TableRow>
</TableLayout>