I\'ve a fragment with a CoordinatorLayout
When i run the app with API 19 the behavior is right : The toolbar is below the status bar and the FAB bu
add android:fitsSystemWindows="false"
to the CoordinatorLayout
Had a similar problem (exemplified here)
How I made it work was to add android:fitsSystemWindows="false"
to the AppBarLayout
and have it on true
on the CoordinatorLayout
take off this line:
<item name="android:windowTranslucentStatus">true</item>