Toolbar overlaps status bar Toolbar overlaps status bar xml xml

Toolbar overlaps status bar


Try add android:fitsSystemWindows="true" to android.support.design.widget.AppBarLayout or @style/AppTheme.PopupOverlay style


in v21\styles.xml

remove <item name="android:statusBarColor">@android:color/transparent</item>


This works for me to get a white overlay on device status bar (problem after update in question)

I changed:

<item name="android:windowDrawsSystemBarBackgrounds">true</item>

to

<item name="android:windowDrawsSystemBarBackgrounds">false</item>

in my styles.xml file