Cordova- How To Hide Virtual Navigation Buttons On Android?
I would like to hide in my app virtual navigation button for devices which does not have analog buttons (see image below). How can i do it in Cordova (Ionic) please?
Solution 1:
I found this cordova plugin cordova-fullscreen-plugin can help you.But it only support Android 4.4+.
// Hide system UI and keep it hidden (Android 4.4+ only) AndroidFullScreen.immersiveMode(successFunction, errorFunction);
And your question is duplicate with Making an Android app fullscreen with Cordova
Post a Comment for "Cordova- How To Hide Virtual Navigation Buttons On Android?"