What's the height of the status bar in Android? Is it always the same?
From my measurements it seems that it's 25dp, but I'm not sure if it has the same height on all platforms.
(I want to know this to properly implement a fade transition from an activity that doesn't have status bar to one that does)
Toggled Fullscreen Solution:
This solution may look like a workaround, but it actually accounts for whether your app is fullscreen (aka hiding the status bar) or not:
This way, if your app is currently fullscreen,
barheight
will equal 0.Personally I had to use this to correct absolute TouchEvent coordinates to account for the status bar as so:
And that will get the absolute y-coordinate whether the app be fullscreen or not.
Enjoy
Official height is
24dp
, as is stated officially by Google on Android Design webpage.