17

我只是在尝试使用表格布局来显示一些数据......数据是 3 列数据,我希望这些列应该利用可用的整个宽度。但似乎我使用的布局 XML 代码只是根据内容包装列。

布局 XML 代码

<?xml version="1.0" encoding="utf-8"?>
<TableLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >   
    <TableRow
        android:layout_width="fill_parent">
        <TextView
            android:padding="3dip"
            android:gravity="left"
            android:text="Name"
            />
        <TextView
            android:padding="3dip"
            android:gravity="left"
            android:text="Address"
            />

        <TextView
            android:padding="3dip"
            android:gravity="left"
            android:text="Age"
            />  
    </TableRow>
</TableLayout>
4

2 回答 2

36

您可以尝试添加android:stretchColumns="0,1,2"到您的<TableLayout>元素。

于 2010-02-26T12:19:05.530 回答
1

android:stretchColomns="0,1" 是一个不错的选择。您也可以尝试使用 android:layout_span = "2" 这将根据您的值将列拉伸在一起(这里它将跨越两列)

于 2013-08-19T06:35:25.740 回答