使ScrollView的内容在具有透明背景的LinearLayout后面滚动

时间:2012-12-31 00:58:11

标签: android scrollview android-linearlayout footer transparent

我有一个带有一些ImageView的垂直ScrollView,我可以向上和向下滚动。在我的应用程序的底部,我有一个页脚包含一个LinearLayout和一个部分透明的背景图像(png)。我如何实现以下行为?

enter image description here

考虑以下布局

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

目前我得到的是看起来像这样的东西

enter image description here

由于我的背景图片peg_picker_bgrepeat不是矩形,我在ScrollView上面有一个丑陋的边框。如何让内容“滚动”页脚?

0 个答案:

没有答案