Android:如何拆分TableLayout行类似于“rowspan”

时间:2012-07-26 21:43:04

标签: android android-layout validation

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

下面是我的代码

<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个单元格。第一个单元格有文本视图

第二个单元格我想将其拆分为两行

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

除了在这一行中使用另一个表格布局之外,有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

它不必是TableLayout,您可以放置​​第二列项目,例如进入RelativeLayout。我怀疑没有嵌套布局就可以轻松完成。