當(dāng)ScrollView與RecyclerView嵌套使用時遇到的幾個坑
1、6.0及以上系統(tǒng)RecyclerView顯示不全
2、滑動沖突,不流暢
3、頁面切換導(dǎo)致嵌套布局不顯示在頂部,而是顯示RecyclerView的第一個item
1.顯示不全
使用RelativeLayout將RecyclerView嵌套
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>
其他思路:重寫LinearLayoutManager,嘗試了下并未解決
2.滑動不流暢
recyclerView.setNestedScrollingEnabled(false);
3.嵌套布局不顯示在頂部
將RecyclerView的焦點取消即可