1. 程式人生 > >Android ScrollView + RecyclerView滑到最底部問題

Android ScrollView + RecyclerView滑到最底部問題

解決方法就是在根佈局設定

 android:descendantFocusability="blocksDescendants" ;

        android:descendantFocusability 有三種值:

        beforeDescendants:viewgroup會優先其子類控制元件而獲取到焦點

        afterDescendants:viewgroup只有當其子類控制元件不需要獲取焦點時才獲取焦點

        blocksDescendants:viewgroup會覆蓋子類控制元件而直接獲得焦點

如果佈局中包含Editext的話就需要給根佈局設定

android:focusable="true"
android:focusableInTouchMode="true"