я думаю, это то, что вы ищете, не забудьте поиграть со значением "android: layout_weight", оно в основном скажет виджетам, насколько они должны расширяться (используйте доступное свободное пространство).
веселись.
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TableRow android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<TableLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<TableRow>
<TextView android:text="TextView Up Left"
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:layout_weight="1">
</TextView>
<ImageView android:id="@+id/ImageView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@android:drawable/btn_plus"
android:gravity="right">
</ImageView>
</TableRow>
<TableRow>
<TextView android:text="Text view with padding"
android:id="@+id/TextView02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="20.0dp"
android:paddingLeft="20.0dp"
android:paddingRight="20.0dp"
android:paddingTop="20.0dp"
android:layout_weight="1">
</TextView>
</TableRow>
</TableLayout>
<TableLayout android:id="@+id/TableLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="0">
<TableRow android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<ImageView android:id="@+id/ImageView02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@android:drawable/btn_minus"
android:layout_gravity="center"
>
</ImageView>
</TableRow>
</TableLayout>
</TableRow>
</TableLayout>