在只有2列的TableRow中设置3个文本视图 - Android

时间:2013-01-10 15:14:09

标签: android xml textview tablelayout tablerow

我正试图在TableRow中制作TableLayout,如此:

                _____________________________________
               |  ___________________   ____________ |
               | |TEXTVIEW 1         | |TEXTVIEW 2 | |
               | |                   | |___________| |
               | |                   |  ___________  |
               | |                   | |TEXTVIEW 3 | |
               | |___________________| |___________| |
               |_____________________________________|

希望这是有道理的。我想将3 TextViews放入一个TableRow。第一列将包含多行和宽TextView,而第二列将包含2个单行短TextViews,它们将叠加在一起。

这可能吗?如果没有,我将如何实现这一目标?下面是我开始的xml代码。

<TableLayout
    xmlns:tools="http://schemas.android.com/tools" 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" 
    android:layout_height="fill_parent" 
    android:layout_width="fill_parent" > 

    <TableRow
        android:id="@+id/row1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <TextView 
            android:id="@+id/question"
            android:layout_height="wrap_content" 
            android:layout_width="wrap_content"  
            android:textStyle="bold"
            android:textSize="8sp" />

        <TextView
            android:id="@+id/timer"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:textStyle="bold"
            android:textSize="8sp" />

        <TextView
            android:id="@+id/points"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:textStyle="bold"
            android:textSize="8sp" /> 
    </TableRow>
</TableLayout>

1 个答案:

答案 0 :(得分:3)

<TableLayout>
 <TableRow>
  Multiline Text
  <TableLayout>
   <TableRow>
    Text
   </TableRow>
   <TableRow>
    Text
  </TableRow>
  </TableLayout>
 </TableRow>
</TableLayout>