There is recyclerview and the easiest list in it. 14 items are transferred to the adapter, from 1 to 14.
Logs say that everything is displayed. So, the toolbar overlaps the first item in the list. To see this, I made another activation with a similar layout, there is a textView for a match_parent in which there is text in the upper left corner.
This text is not visible including. I attach the layout:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/coordinator" android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" /> </android.support.design.widget.AppBarLayout> <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/fragment_list_container"> </FrameLayout> </android.support.design.widget.CoordinatorLayout> And yes, the list in the snippet is:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/fragment_list_container"> </android.support.v7.widget.RecyclerView> </RelativeLayout> 
app:layout_behavior="@string/appbar_scrolling_view_behavior"to theFrameLayoutwill anything change? - post_zeew