我想在視圖下方設計以在Android平板電腦上顯示它。我想知道xml代碼來設計這種視圖。誰能幫我 ?使用Android選項卡的表格佈局設計視圖?
我現在用下面的代碼... 但如何設置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>
是的,我會添加它。但如何使兩個Tablelayout 50%的寬度。 – Mak
對於TableRow中的每個視圖給android:layout_weight =「1」,我試過這個工作。 – Aju
它爲我的兄弟工作。 – Aju