當ScrollView與RecyclerView嵌套使用時遇到的幾個坑
1功炮、6.0及以上系統(tǒng)RecyclerView顯示不全
2、滑動沖突术唬,不流暢
3、頁面切換導致嵌套布局不顯示在頂部滚澜,而是顯示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的焦點取消即可