在ScrollView中嵌套RecyclerView的時候會出現滑動卡頓的問題,網上面找了一些處理的方式,有去改動觸摸事件(例如onTouch)的,也有使用自定義控件去修改的,後來覺得太麻煩。
其實直接在布局裡面設定一些屬性就可以了,抛棄掉舊的ScrollView這個控件,用新的控件NestedScrollView去替代,另外還要在RecyclerView裡面設定android:nestedScrollingEnabled="false"這個屬性,就這樣就ok了,示例如下:
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:nestedScrollingEnabled="false"
android:layout_height="wrap_content"></android.support.v7.widget.RecyclerView>
</android.support.v4.widget.NestedScrollView>