Я использую RelativeLayout:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/status_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:paddingTop="8px"
android:paddingBottom="8px"
android:gravity="center"
android:textColor="@color/header_foreground"
android:background="@color/header_background"
android:text="@string/status_header"/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/statuspanel"
android:layout_above="@+id/status_footer">
Поместите все свои средние биты здесь, возможно, в TableLayout
</ScrollView>
<TableLayout
android:id="@+id/status_footer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:paddingTop="4px"
android:paddingLeft="2px"
android:paddingRight="2px"
android:stretchColumns="*"
android:textColor="@color/footer_foreground"
android:background="@color/footer_background">
<TableRow>
<Button
android:id="@+id/status_backbutton"
android:layout_width="0px"
android:layout_weight="1"
android:text="@string/status_backbutton" />
</TableRow>
</TableLayout>
</RelativeLayout>
Вам придется извинить все мои биты цвета, но выполучить идею.Он использует элементы alignParent в RelativeLayout, который является ключевым, я думаю