попробуйте ниже код, что вам нужно, это основной макет внутри этого
1) scrollview, в представлении прокрутки вы можете добавить макет с множеством представлений.
2) другой макет с 2 кнопками внутри для сохранения и отмены. и добавьте стиль как панель кнопок.
не забудьте добавить вес = 1 в scrollview.
попробуйте ниже макета, вы получите то, что вы хотите.
<?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" >
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:scrollbars="horizontal|vertical" >
</ScrollView>
// в приведенном выше scrollview добавьте ваш макет с другими видами.
// ниже Layou для панели кнопок, как вы хотите
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
style="@android:style/ButtonBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal" >
<Button
android:id="@+id/browseAddBtn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_weight="1"
android:text="Add" />
<Button
android:id="@+id/browseViewBtn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_weight="1"
android:text="Back" />
<Button
android:id="@+id/browseReturnBtn"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Save" />
</LinearLayout>