2012-07-26 43 views
0

我有一個表的佈局,我想一個細胞分裂成兩排安卓:我如何拆分類似TableLayout行「行跨度」

下面

是我的代碼

<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個電池。第一小區有一個文本視圖

我想將它拆分成兩排

第一行有一個微調和文本視圖和第二行有一個編輯文本

第二小區是否有方法來做到這一點,而不是在這一行中使用另一個表格佈局?

回答

0

它不必是一個TableLayout,你可以把第二列項目,例如進入RelativeLayout。我懷疑沒有嵌套佈局就可以輕鬆做到這一點。