私は使用しようとしてきた
ただし、 scrollview では機能しません。リストビューを使用していないことに注意してください。ただし、画像とボタンを含む大きなレイアウトです。ユーザーがスクロールしているときでも、フッターは常にボタンに配置する必要があります。FourSquare のアプリにはこれがあり、スクロール中でも固定フッターが表示されます。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true" >
<RelativeLayout
android:id="@+id/root"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/search_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@color/red" />
<LinearLayout
android:id="@+id/main_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/search_container"
android:layout_below="@+id/root"
android:background="@color/layout_bg_wallet_login"
android:orientation="vertical" >
------More Buttons and Images
</LinearLayout>
</RelativeLayout>