RecyclerView无法在NestedScrollView

时间:2017-03-01 20:29:18

标签: android android-recyclerview android-nestedscrollview

我在标签布局中使用NestedScrollView,当我在NestedScrollView 2中实现RecyclerView时出现问题:

  1. 工具栏未隐藏。
  2. RecyclerView不能顺畅滚动。
  3. 这是我的代码:

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:fillViewport="true"
        xmlns:android="http://schemas.android.com/apk/res/android">
    
        <RelativeLayout
            android:layout_width="match_parent"
            android:background="#fff"
            android:layout_height="wrap_content">
    
            <android.support.v7.widget.RecyclerView
                android:layout_below="@+id/toolbar"
                android:id="@+id/recyclerView"
                android:background="#fafafa"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true" />
    
            <ProgressBar
                android:id="@+id/progressBar1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true" />
    
        </RelativeLayout>
    
    </android.support.v4.widget.NestedScrollView>
    

2 个答案:

答案 0 :(得分:1)

使用recylerView.setNestedScrollingEnabled(false);让您的滚动更流畅。

答案 1 :(得分:0)

为视图创建单独的布局文件并尝试。并将其包含在列表视图中。

<LinuearLayout ..>
  <include layout="@layout/cv1"/>
  <include layout="@layout/rv1"/>
  <include layout="@layout/rv2"/>
  <include layout="@layout/rv3"/>
</LinearLayout>

这只是你的一个线索。我确实在很久以前就解决了类似的问题。请尝试尝试这个线索。