I want to design below view for the purpose to display it on Android Tablet. I want to know the xml code to design this kind of view. can anyone help me ?

I used following code now…
but how to set 50% tablelayout on both side
<?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>
Inside TableLayout use TableRow and use other views inside TableRow.