RecyclerView中的RecyclerView不滚动

时间:2017-09-11 12:18:01

标签: android android-recyclerview recyclerview-layout

我有一个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>

1 个答案:

答案 0 :(得分:2)

尝试

  

recyclerView.setNestedScrollingEnabled(真)