How to change the status bar color in Android with solar2D

Hi @Trung_Kien_Tran

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