<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout android:id="@+id/bottom_layout"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:background="#ff0000"
android:orientation="horizontal" />
<LinearLayout android:id="@+id/left_layout"
android:layout_width="120dp"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_above="@+id/bottom_layout"
android:background="#00ff00"
android:orientation="vertical" />
<LinearLayout android:id="@+id/right_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_layout"
android:layout_toRightOf="@+id/left_layout"
android:background="#0000ff"
android:orientation="vertical" />
</RelativeLayout>