在我的佈局中,回收視圖滾動,但圖像是靜態的,我想要的是當用戶滾動圖像也滾動回收視圖請幫助我出來..! 我已經省略了id的空格 我試過滾動視圖>相對佈局/線性佈局>(imageview +回收視圖),但它使應用程序崩潰。Imageview和recycleview裏面滾動視圖與背景
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id=" "
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=" "
>
<ru.egslava.blurredview.BlurredImageView
app:radius="0.8"
app:keepOriginal="true"
app:downSampling="2"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id=" "
/>
<ImageView
android:layout_width="200dp"
android:layout_height="250dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="35dp"
android:id=" "
/>
<android.support.v7.widget.RecyclerView
android:id=" "
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below=" "
android:layout_marginTop="25dp"
android:scrollbars="vertical"
>
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
添加圖像作爲您RecyclerView的標題。 –
http://stackoverflow.com/questions/29449329/recyclerview-with-scrolling-background檢查了這一點。它類似於你的問題 –