我在标签布局中使用NestedScrollView,当我在NestedScrollView 2中实现RecyclerView时出现问题:
这是我的代码:
<?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>
答案 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>
这只是你的一个线索。我确实在很久以前就解决了类似的问题。请尝试尝试这个线索。