Cordova- how to hide virtual navigation buttons on

2019-07-09 07:32发布

问题:

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?

回答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