Rémi
Rémi

Reputation: 27

Android Status bar crops menu

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 ?

enter image description here

Upvotes: 1

Views: 122

Answers (1)

Nikos Hidalgo
Nikos Hidalgo

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

Related Questions