Android:ScrollView 内的 Recycler 视图不工作

Android: Recycler view inside ScrollView is not working

我想把 RecyclerView 放在 ScrollView 里面,我在 recycler 上面有布局视图,所以我想在滚动时同时滚动布局和 recycler

在我的主布局中,我有两个子布局,其中一个有 recyclerView,另一个有图像。两个布局都在 scrollView。当我在布局中向上滚动时,我想同时滚动

我知道我们不能在一个布局中放置两个 滚动视图 的问题。 我正在搜索是否有任何逻辑我们可以 scroll layoutrecycler View

Layout.xml

<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/backgorund"
android:weightSum="1">

 <ScrollView
    android:id="@+id/scrollView1"

    android:layout_width="match_parent"
    android:fillViewport="true"
android:layout_height="match_parent" >

<LinearLayout

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:weightSum="1">
<LinearLayout
    android:id="@+id/layout_top_balance"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight=".25">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/txt_balance"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:textSize="35dp"
            android:textColor="@color/black"
            android:text=" USD"/>
        <TextView
            android:layout_below="@+id/txt_balance"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:textSize="20dp"
            android:textColor="#828282"
            android:text="Account Balance"/>
    </RelativeLayout>
</LinearLayout>
<LinearLayout
    android:id="@+id/layout_feeds"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:paddingLeft="16dp"
    android:paddingBottom="5dp"
    android:layout_weight=".75">

    <view
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        class="android.support.v7.widget.RecyclerView"
        android:id="@+id/recycler_view"
        android:layout_alignParentStart="true"
        android:layout_alignParentLeft="true"/>
</LinearLayout>
    </LinearLayout>
</ScrollView>

请哪位摄像头帮忙解决这个问题:)

android不建议在scroll里面滚动。 Recycler 视图本身就是一个滚动条。似乎您想要列表上方的可滚动部分 "layout_top_balance"。将此视图添加为回收站视图的 header 并删除滚动视图。这将解决您的问题。

如果你想添加,你可以使用这个回收视图库 header

RecyclerViewHeader Example 1

RecyclerViewHeader Example 2