0

我有一个表格布局,我想将一个单元格分成两行

下面是我的代码

<TableRow android:layout_marginBottom="10dp">

        <TextView android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="3dp"
                android:textSize="17dp"
                android:text="@string/cardiovascular_problems" />

            <Spinner android:id="@+id/cardiovascular_spinner"
                android:layout_width="200dp"
                android:layout_height="50dp" />

            <TextView android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="3dp"
                android:textSize="17dp"
                android:text="@string/if_yes_give_details" />

            </TableRow>

在这一行中,我想要 2 个单元格。第一个单元格有一个文本视图

第二个单元格我想把它分成两行

第一行有一个微调器和文本视图,第二行有一个编辑文本

除了在这一行中使用另一个表格布局之外,还有其他方法吗?

4

1 回答 1

0

它不一定是 TableLayout,您可以将第二列项目,例如放入 RelativeLayout。我怀疑是否可以在没有嵌套布局的情况下轻松做到这一点。

于 2012-07-27T17:32:12.833 回答