美文网首页Android填坑记录
RecyclerView嵌套RecyclerView自动滚动问题

RecyclerView嵌套RecyclerView自动滚动问题

作者: sun_wenming | 来源:发表于2018-07-13 17:45 被阅读191次

参考于issues_1417

在最外层的recyclerView布局文件中加上descendantFocusability属性的值有三种:android:descendantFocusability="beforeDescendants"

beforeDescendants:viewgroup会优先其子类控件而获取到焦点
afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点

相关文章

网友评论

    本文标题:RecyclerView嵌套RecyclerView自动滚动问题

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