业务是这样的,在NestScrollView中的主布局有RecyclerView,而RecyclerView上面还有一个很大的header,导致每次回到这个页面时RecyclerView都会自动滑动到顶部,后来参考网上内容后找到解决办法 。
解决方法就是NestScrollView节点添加
android:focusableInTouchMode="true"
- 1
然后在NestScrollView的子节点view添加:
android:descendantFocusability="blocksDescendants"
内容来自 https://blog.csdn.net/a1018875550/article/details/73736013 感谢这位楼主的分享