- 在代码中获取该ScrollView的对象,然后加入如下代码:
scrollview.setFocusableInTouchMode(true);
scrollview.requestFocus();
2.在ScrollView的外层布局(SwipeRefreshLayout)设置:
android:focusable="true"
android:focusableInTouchMode="true"
3.在RecyclerView的外层布局(LinearLayout)设置:
android:descendantFocusability="blocksDescendants"
总有一种适合你,或者3种一起用,快点去试试效果