2011-08-26 128 views
0

我想在視圖下方設計以在Android平板電腦上顯示它。我想知道xml代碼來設計這種視圖。誰能幫我 ?使用Android選項卡的表格佈局設計視圖?

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

內TableLayout使用的TableRow,並使用內部的TableRow其他意見。

+0

是的,我會添加它。但如何使兩個Tablelayout 50%的寬度。 – Mak

+0

對於TableRow中的每個視圖給android:layout_weight =「1」,我試過這個工作。 – Aju

+0

它爲我的兄弟工作。 – Aju

0

我會在另一個線性佈局內使用2個線性佈局。 子佈局將使用layout_weight = 1.

+0

我想顯示兩個列表視圖所以我使用表佈局,並希望顯示兩個表格佈局的等寬.. – Mak

相關問題