美文网首页
Bug系列:ScrollView嵌套RecyclerView出现

Bug系列:ScrollView嵌套RecyclerView出现

作者: Antonylr | 来源:发表于2020-07-20 10:50 被阅读0次

    问题场景展示:


    item显示不全.png

    我的界面中新手必看RecyclerView中的item超过了4个,所以显示不全。
    我的解决方法:

       <com.zhy.autolayout.AutoRelativeLayout
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:descendantFocusability="blocksDescendants">
    
                <android.support.v7.widget.RecyclerView
                    android:id="@+id/lrv_hot_question"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginBottom="20px"
                    android:background="@color/app_bg"
                    android:paddingStart="20dp"
                    android:paddingEnd="20dp" />
    
     </com.zhy.autolayout.AutoRelativeLayout>
    

    将RecyclerView外层使用RelativeLayout布局包裹并使用了
    android:descendantFocusability="blocksDescendants"属性
    参考来自:https://www.jianshu.com/p/d7db22a62e06

    相关文章

      网友评论

          本文标题:Bug系列:ScrollView嵌套RecyclerView出现

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