我有一个带有一些 ImageView 的垂直 ScrollView,我可以上下滚动。在我的应用程序的底部,我有一个由带有部分透明背景图像 (png) 的 LinearLayout 组成的页脚。如何实现以下行为?
考虑以下布局
<LinearLayout blah blah... >
<RelativeLayout
android:id="@+id/guesses_scroll_view_holder"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ScrollView
android:id="@+id/guesses_scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bgrepeat"
android:scrollbarStyle="outsideOverlay"
android:layout_above="@+id/footer" >
<LinearLayout
android:id="@+id/guesses"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bgrepeat"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>
<LinearLayout
android:id="@+id/footer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/peg_picker_bgrepeat"
android:orientation="vertical" >
< some footer content />
</LinearLayout>
</RelativeLayout></LinearLayout>
我现在得到的是看起来像这样的东西
由于我的背景图像 peg_picker_bgrepeat 不是矩形的,所以我在 ScrollView 上方得到了一个丑陋的边框。如何使内容“滚动到”页脚后面?