Comment faire pour avoir un pied de page fixe avec le scrollview dans android?

J'ai essayé d'utiliser

Fixe le pied de page n'affichant pas le plus bas de l'élément de liste

mais ne fonctionne pas avec le scrollview .
Remarque je ne suis pas à l'aide de listview mais c'est un grand mises en page avec des images et des boutons .
Le pied de page doit être positionné dans le bas toujours, même pendant que l'utilisateur fait défiler .
FourSquare a ce dans leur application, où il est fixé pied de page, même pendant le défilement.

<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>

OriginalL'auteur Preethi | 2012-11-07