Я бы порекомендовал вам использовать 2 LinearLayouts, вертикальный LinearLayout для хранения галереи и горизонтальный LinearLayout, который, в свою очередь, содержит различные кнопки.
Код:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<Gallery
android:layout_height="fill_parent"
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_weight="1">
</Gallery>
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content">
<Button
android:id="@+id/Button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
<Button
android:id="@+id/Button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
<Button
android:id="@+id/Button3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
<Button
android:id="@+id/Button4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1">
</Button>
</LinearLayout>
</LinearLayout>