-1

我想创建一个有四列的表格,它填满了屏幕的所有宽度。我将放置一些会根据用户输入更改的文本,并且我希望表格的四列保持相同的宽度,无论我放入其中的文本,我该怎么办?

4

2 回答 2

1

在每一列中使用layout_width="0dip"和。layout_weight="1"

于 2013-05-13T11:03:19.433 回答
0

您可以像这样创建表格布局:

    <TableLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:stretchColumns="*" >

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

        <TextView
            android:id="@+id/editText2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:ems="10"
            android:longClickable="false"
            android:text="sdf" />

        <TextView
            android:id="@+id/editText4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:ems="10"
            android:text="sdfasdfsdfsdf" />

        <TextView
            android:id="@+id/editText3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:ems="10"
            android:text="sdsd" />

        <TextView
            android:id="@+id/editText1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:ems="10"
            android:text="asdfasdfasdfasf" />

    </TableRow>
</TableLayout>

固定大小

于 2013-05-13T11:06:40.500 回答