我设计了一个headerlayout(背景是透明的),它不在scrollview中,而滚动视图位于该标题的下方,在该scrollview中有一个固定高度为1000dp的布局,在scrollview中我动态添加了视图这对我很好。但我的问题是当我滚动滚动视图时,背景图像也在移动(背景图像高度为1550像素),同时我想要更改标题的背景,因为它在滚动视图背景.... 。 我无法实现这一点,请任何人帮助我进行此设计。下面是我的设计代码..
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/navbar"
android:background="@drawable/navbar_blooptransprant64"
/>
<ScrollView
android:layout_below="@+id/navbar"
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="1000dp"
android:background="@drawable/new_bg"
android:orientation="vertical"
>
<LinearLayout
android:id="@+id/outer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
</LinearLayout>
</LinearLayout>
</ScrollView>