2016-02-10 144 views
0

PhoneGap的版本:4.1.1隱藏標題欄和顯示導航欄的PhoneGap的Android

我想顯示的導航欄和隱藏頂部標題欄。我怎麼能用手機來做到這一點。我正在使用phonegap構建 - https://build.phonegap.com/

如果我保留fullscreen="true"那麼它會隱藏標題和導航。 如果我保留fullscreen="false"那麼它會顯示標題和導航。

在早期版本中,當我用戶fullscreen=true它顯示導航欄和標題欄被隱藏。

回答

0

是的,自發布[email protected]以來,config.xml中的設置<preference name="fullscreen" value="true" />將使用身臨其境的模式,即使沒有此插件,也可使用。

你必須使用一個插件像https://github.com/mesmotronic/cordova-plugin-fullscreen然後:

// Extend your app underneath the status bar (Android 4.4+ only) 
AndroidFullScreen.showUnderStatusBar(successFunction, errorFunction); 

我希望這有助於。