Reputation: 27
That's probably a simple trick, our menu is croped by the satus bar
on some adroid devices
as you can see on this screenshot.
Any idea on how this could be solved ? Can it be related to z-index
properties ?
Upvotes: 1
Views: 122
Reputation: 3756
if you have the following property on your layout, you need to set it to false:
android:fitsSystemWindows="false"
this stretches the active area of your app to cover the entire screen, so by setting it to false, it should start that area, right below the status bar. If not, would you please provide your layout code for reference?
Upvotes: 1