Scrollview (NestedScrollView) 嵌套 RecyclerView 的时候RecyclerView 抢焦点,跳转到这个Activity 页面的时候,Scrollview 自动滑动到RecyclerView 的地方而不是本页面的最上方的View, 这时候是因为RecyclerView抢了焦点 ,自动滑动,只需要在xml页面在最顶层的View 加入
[html]view plaincopy
android:focusableInTouchMode="true"
android:focusable="true"
让最上端的View 获取焦点 即可