美文网首页
Android--ScrollView嵌套多个RecyclerV

Android--ScrollView嵌套多个RecyclerV

作者: 阿木马克 | 来源:发表于2017-08-01 11:31 被阅读73次

    问题重现:
    当一个页面中布局多个属性为 android:layout_height="wrap_content"的RecyclerView 时,页面在某些版本下无法上下滑动;

    解决办法:
    在每个RecyclerView外层嵌套一个RelativeLayout,并设置descendantFocusability属性。代码如下

    <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:descendantFocusability="blocksDescendants">
    
                    <android.support.v7.widget.RecyclerView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="15dp"
                        android:layout_marginRight="15dp"
                        android:background="#ffffff"
                        android:nestedScrollingEnabled="false">
    
                    </android.support.v7.widget.RecyclerView>
    
                </RelativeLayout>
    

    相关文章

      网友评论

          本文标题:Android--ScrollView嵌套多个RecyclerV

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