使用Android选项卡的表格布局设计视图?

时间:2011-08-26 08:05:43

标签: android android-layout

我想设计下面的视图,以便在Android平板电脑上显示它。我想知道xml代码来设计这种视图。谁能帮我 ?

enter image description here

我现在使用以下代码...... 但是如何在两侧设置50%的tablelayout

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:gravity="left" android:layout_height="fill_parent" android:id="@+id/relativeLayout1">
    <TableLayout android:layout_toLeftOf="@+id/tableLayout2" android:id="@+id/tableLayout1" android:layout_width="wrap_content" android:layout_height="fill_parent">

    <TextView android:text="table 1"></TextView>


    </TableLayout>

     <TableLayout android:layout_toRightOf="@+id/tableLayout1" android:id="@+id/tableLayout2" android:layout_width="wrap_content" android:layout_height="fill_parent">


    <TextView android:text="table 2"></TextView>



     </TableLayout> 

     </RelativeLayout>

2 个答案:

答案 0 :(得分:2)

Inside TableLayout使用TableRow并使用TableRow中的其他视图。

答案 1 :(得分:0)

我会在另一个线性布局中使用2个线性布局。 子布局将使用layout_weight = 1。