Вы пробовали использовать RelativeLayouts
?Что-то вроде:
<RelativeLayout android:width="fill_parent"
android:height="fill_parent"
...>
<WhateverYouWantAtBottom android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
/>
<ScrollView android:layout_width="fill_parent"
android:layout_height="wrap_content">
<whateverYouWantScrollable android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</ScrollView>
</RelativeLayout>
Внизу вы можете увидеть изображение с нужным вам изображением.Независимо от того, как долго ваш контент в просмотре прокрутки, просмотр изображений не будет сдвигаться снизу, если для его свойства alignParentBottom установлено значение true.
РЕДАКТИРОВАТЬ: В приведенном выше коде <whateverYouWantAtTheBottom>
будетфон, как я объявил первым.На переднем плане будет содержимое scrollView, которое было добавлено последним в XML.