Maybe this helps
display.setStatusBar( display.HiddenStatusBar ) --Hide status bar from the beginning
if system.getInfo (“androidApiLevel”) and
system.getInfo (“androidApiLevel”) < 19 then
native.setProperty (“androidSystemUiVisibility”, “lowProfile”)
else
native.setProperty (“androidSystemUiVisibility”, “immersiveSticky”)
end
Code above comes from Differenti versioni di telefoni android
Have a nice day:)
ldurniat