This is actually pretty easy to achieve - there is a behavior_overlapTop
property for each view that has app:layout_behavior="@string/appbar_scrolling_view_behavior"
. So all you need to do is just to set this property to your RecyclerView
:
<android.support.v7.widget.RecyclerView
android:id="@+id/categories"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
app:behavior_overlapTop="64dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:gravity="center"/>