Imageview和recycleview里面scrollview有背景

时间:2017-04-25 05:52:47

标签: android xml android-recyclerview

在我的布局中,循环视图是滚动但图像是静态的我想要的是当用户滚动图像时还滚动循环视图请帮帮我.. !! 我省略了带有空格的id 我试过滚动视图>相对布局/线性布局>(imageview +循环视图)但它会使应用程序崩溃。

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

2 个答案:

答案 0 :(得分:1)

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        >

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:src="your image"/>

         <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:src="your image"/>

        <android.support.v7.widget.RecyclerView
            android:id="@+id/list_recylclerview"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            />

    </LinearLayout>

</android.support.v4.widget.NestedScrollView>

并在Java代码中生成mRecyclerView.setNestedScrollingEnabled(false); 正确滚动信用check this answer

答案 1 :(得分:0)

按照本教程,这是enter link description here

activity_main.xml中

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>

<div id='app'/>