Scrollview (NestedScrollView) 嵌套 RecyclerView 的時候RecyclerView 搶焦點,跳轉到這個Activity 頁面的時候,Scrollview 自動滑動到RecyclerView 的地方而不是本頁面的最上方的View, 這時候是因為RecyclerView搶了焦點 ,自動滑動,只需要在xml頁面在最頂層的View 加入
[html]view plaincopy
android:focusableInTouchMode="true"
android:focusable="true"
讓最上端的View 獲取焦點 即可