【问题标题】:Hide Status Bar in Android with Phonegap使用 Phonegap 在 Android 中隐藏状态栏
【发布时间】:2018-07-12 10:45:13
【问题描述】:

我想在 Android 上隐藏状态栏。

在启动时,我没有状态栏,而是顶部带有状态栏大小的灰色栏。 当我使用键盘时,会出现状态栏。

我已经检查了这些答案,但它并没有解决我的问题:Hide Status Bar in Android with Phonegap Build

这里是我的config.xml

<?xml version='1.0' encoding='utf-8'?>
<widget id="com.phonegap.helloworld" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
    <name>Hello world</name>
    <description></description>
    <author email="" href="http://phonegap.com"></author>
    <content src="index.html" />
    <preference name="DisallowOverscroll" value="true" />
    <preference name="android-minSdkVersion" value="14" />
    <preference name="orientation" value="landscape" />
    <preference name="Fullscreen" value="true" />

    <plugin name="cordova-plugin-whitelist" source="npm" spec="~1.3.3" />
    <plugin name="cordova-plugin-device" source="npm" spec="~1.1.6" />
    <plugin name="cordova-plugin-fullscreen" spec="~1.1.0" />
    <plugin name="cordova-plugin-statusbar" spec="~2.4.2" />

    <config-file parent="UIStatusBarHidden">
        <true/>
    </config-file>
    <config-file parent="UIViewControllerBasedStatusBarAppearance">
        <false/>
    </config-file>

    <access origin="*" />
    <allow-intent href="http://*/*" />
    <allow-intent href="https://*/*" />
    <allow-intent href="tel:*" />
    <allow-intent href="sms:*" />
    <allow-intent href="mailto:*" />
    <allow-intent href="geo:*" />

    <platform name="android">
        <allow-intent href="market:*" />
    </platform>
    <platform name="ios">
        <allow-intent href="itms:*" />
        <allow-intent href="itms-apps:*" />
    </platform>
    <engine name="android" spec="~6.3.0" />
</widget>

我也把这段代码放在JS

document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
    StatusBar.hide();
    if (typeof AndroidFullScreen !== 'undefined') {   // Fullscreen plugin exists ?
        function errorFunction(error) { console.error(error); }
        AndroidFullScreen.isSupported(AndroidFullScreen.immersiveMode, errorFunction);
    }
}

【问题讨论】:

    标签: javascript android phonegap-build phonegap


    【解决方案1】:

    为了解决这个问题,我在我的 config.xml 中添加了这个首选项:

    <preference name="StatusBarOverlaysWebView" value="true" />
    

    【讨论】:

      猜你喜欢
      • 2016-06-19
      • 1970-01-01
      • 1970-01-01
      • 2013-03-09
      • 2021-02-20
      • 2016-05-10
      • 2021-10-11
      • 2011-07-22
      • 2021-09-25
      相关资源
      最近更新 更多