RecyclerView 内的 RecyclerView 不滚动

RecyclerView within RecyclerView is not scrolling

我有一个布局 SwipeRefreshLayout 作为父布局,在其中我在 RecyclerView 中使用 RecyclerView。内部回收视图不滚动。我尝试了该网站上的多种解决方案,但没有解决我的问题。

main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" 
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

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

和 recyclerview 项目

<?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.support.v7.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</LinearLayout>

尝试

recyclerView.setNestedScrollingEnabled(true)