B4X:
Dim jo As JavaObject = Activity
jo.RunMethod("setSystemUiVisibility", Array As Object(5894)) '--> status bar area becomes 100% black, non-visible
jo = jo.RunMethod("getResources", Null)
Dim ResourceID As Int = jo.RunMethod("getIdentifier", Array As Object("status_bar_height", "dimen", "android"))
Dim StatusBarHeight As Int = jo.RunMethod("getDimensionPixelSize", Array As Object(ResourceID))
In this code, StatusBarHeight is > 0, and if I try to draw a "full screen rectangle" on Activity, it doesn't draw over what should be the hidden status bar. Therefore my screen is not 100% full screen.
I searched for hours but can't find a solution.