Android Question Full Screen

Wolli013

Well-Known Member
Licensed User
Longtime User
Hello friends, I use this command to hide the upper status bar and the 3 virtual buttons at the bottom.
This works quite well, but then part of the display is missing in the lower part of the screen.
How can I continue to use the full screen?

B4X:
'Statusleiste und Virtuelle Tasten ausblenden--------------------------
    Dim jo As JavaObject = Activity
    jo.RunMethod("setSystemUiVisibility", Array As Object(5894))   
'Statusleiste und Virtuelle Tasten ausblenden--------------------------
 
Top