How to put RecyclerView below CollapsingToolbarLayout and responsive to toolbar when collapsed in Android?

 ̄綄美尐妖づ 提交于 2019-12-05 03:46:20

I don't know if you have already fixed it. However you are missing

app:layout_behavior="@string/appbar_scrolling_view_behavior"

in your RecyclerView.

Try like this:

<android.support.v7.widget.RecyclerView
    android:id="@+id/dc_rv_destination"
    android:scrollbars="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!