问题原因 NestedScrollView嵌套Recyclerview时,刷新Recyclerview的条目之后,发现Recyclerview会被顶上去,后来发现是因为Recyclerview抢占焦点导致的 解决方案 在xml布局中的NestedScrollView节点上添加 android:focusableInTouchMode=“true” 在Recyclerview直属父布局上加android:descendantFocusability=“blocksDescendants”