美文网首页
ScrollView与RecyclerView解决滑动冲突

ScrollView与RecyclerView解决滑动冲突

作者: Zane_Samuel | 来源:发表于2019-01-21 13:52 被阅读6次

    在项目中遇到过ScrollView嵌套ScrollView滑动冲突,ScrollView嵌套ListView嵌套的滑动冲突,网上的方法太多解决方案,代码量都很大,所以我们现在可以用RecyclerView来替换点ListView,RecyclerView 嵌套RecyclerView是不存在冲突的 因为内部已经解决,ScrollVIew嵌套RecyclerView会存在现实不全的问题,滑动的时候会导致不流畅,所以我换用的是NestedScrollView嵌套RecyclerView不会存在显示不完全的现象,但是还会有一点的滑动冲突,下面我们来聊一聊解决方案。

    我附上Xml代码如下:

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.v4.widget.NestedScrollView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="标题党"/>
    
            <android.support.v7.widget.RecyclerView
                android:id="@+id/recyclerView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>
          
        </LinearLayout>
    
    </android.support.v4.widget.NestedScrollView>
    

    上面只是布局代码而已,滑动冲突还是没有解决,我们只要在recyclerView 设置一下这个属性就可以了
    recyclerView.setNestedScrollingEnabled(false);

    相关文章

      网友评论

          本文标题:ScrollView与RecyclerView解决滑动冲突

          本文链接:https://www.haomeiwen.com/subject/cwlycqtx.html