RelativeLayout выполнит то, что вы хотите
<?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/rightLayout"
android:layout_width="100dip"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:background="#003300"
android:orientation="vertical" >
</LinearLayout>
<LinearLayout
android:id="@+id/topLayout"
android:layout_toLeftOf="@id/rightLayout"
android:layout_width="fill_parent"
android:layout_height="100dip"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#330033"
android:orientation="vertical" >
</LinearLayout>
<LinearLayout
android:id="@+id/bottomLayout"
android:layout_toLeftOf="@id/rightLayout"
android:layout_below="@id/topLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:background="#334433"
android:orientation="vertical" >
</LinearLayout>
</RelativeLayout>
Результат в виде LinearLayouts и Buttons / TextViews (поскольку я не был уверен, что вы хотели):
Если вы используете LinearLayouts в качестве контейнера для хранения нескольких представлений, оставьте его как есть.
Если вы планируете иметь только один вид в каждой из ваших «частей», измените LinearLayouts в моем файле макета на этот тип.
Ex. если вы хотите, чтобы часть 1 была просто изменением кнопки
<LinearLayout
android:id="@+id/topLayout"
будет
<Button
android:id="@+id/topLayout"
Вложенные представления плохие, поэтому хорошо избегать их, если вы можете