web-dev-qa-db-ja.com

コンテンツが重複するiOSステータスバー

Phonegapアプリケーションを構築しましたが、Androidおよびwindowsで正常に動作します。しかし、iOSの場合、ステータスバーのコンテンツとページのコンテンツが混同されるため、戻るボタンをタップできません。ヘッダーで提供されています。

これは私のconfig.xmlファイルです

   <?xml version="1.0" encoding="UTF-8"?>
<widget xmlns   = "http://www.w3.org/ns/widgets"
        xmlns:gap   = "http://phonegap.com/ns/1.0"

        id        = "io.example.com"
        version     = "1.0.2">
    <name>MyAPP</name>

    <description>

    </description>

    <author  email="[email protected]">
        Rakesh
    </author>

    <access Origin="*"/>


    <content src="index.html" />


    <preference name="target-device" value="universal" />   <!-- all: possible values handset, tablet, or universal -->
    <!-- <preference name="fullscreen" value="true" />  -->          <!-- all: hides the status bar at the top of the screen -->
    <preference name="webviewbounce" value="false" />        <!-- ios: control whether the screen 'bounces' when scrolled beyond the top -->
    <preference name="ios-statusbarstyle" value="black-opaque" />   <!-- ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar -->
    <preference name="auto-hide-splash-screen"    value="true" />           <!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
    <preference name="Android-minSdkVersion"      value="7" />              <!-- Android: MIN SDK version supported on the target device. MAX version is blank by default. -->
    <preference name="phonegap-version" value="3.7.0" />
    <icon src="icon.png" />

    <icon src="icon-57.png"            gap:platform="ios"        width="57" height="57" />
    <icon src="icon-72.png"            gap:platform="ios"        width="72" height="72" />
    <icon src="icon-57-2x.png"         gap:platform="ios"        width="114" height="114" />
    <icon src="icon-72-2x.png"         gap:platform="ios"        width="144" height="144" />
    <icon src="icon-120.png"           gap:platform="ios"        width="120" height="120" />
    <icon src="icon-76.png"            gap:platform="ios"        width="76" height="76" />
    <icon src="icon-76-2x.png"         gap:platform="ios"        width="152" height="152" />

    <gap:plugin name="com.phonegap.plugin.statusbar" />
    <gap:plugin name="org.Apache.cordova.device" />
    <gap:plugin name="org.Apache.cordova.dialogs" />
    <gap:plugin name="org.Apache.cordova.camera" />
    <gap:splash src="SplashScreenImage.jpg" gap:platform="winphone" />
    <gap:splash src="splash.png" />
    <gap:splash src="screen-iphone-portrait.png"         gap:platform="ios"     width="320" height="480" />
    <gap:splash src="screen-iphone-portrait-2x.png"      gap:platform="ios"     width="640" height="960" />
    <gap:splash src="screen-iphone-portrait-568h-2x.png" gap:platform="ios"     width="640" height="1136" />
    <gap:splash src="screen-ipad-portrait.png"           gap:platform="ios"     width="768" height="1024" />
    <gap:splash src="screen-ipad-landscape.png"          gap:platform="ios"     width="1024" height="768" />

    <gap:config-file platform="ios" parent="CFBundleShortVersionString">
    <string>100</string>
    </gap:config-file>

    <feature name="App">
      <param name="Android-package" value="org.Apache.cordova.App"/>
    </feature>
    <feature name="http://api.phonegap.com/1.0/network"/>

    <!-- Deprecated plugins element. Remove in 3.0 -->


</widget>
19
RAKESH DADHICH

これらの行をconfig.xmlファイルに追加します

<preference name="StatusBarOverlaysWebView" value="false" />
        <preference name="StatusBarBackgroundColor" value="#000000" />
        <preference name="StatusBarStyle" value="lightcontent" />
      <gap:plugin name="com.phonegap.plugin.statusbar" />
14
sunil

Sunilから受け入れられた答えはもはや関係ないので、プラグインは非推奨です。

Config.xmlで次を使用します

<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarBackgroundColor" value="#000000" />
<preference name="StatusBarStyle" value="lightcontent" />
<plugin spec="https://github.com/Apache/cordova-plugin-statusbar.git" source="git" />
26
JazzCat

これは statusbarプラグイン の助けを借りて達成できます。必要なのは、コマンドライン_phonegap plugin add https://github.com/Apache/cordova-plugin-statusbar.git_を介してプラグインをインストールし、StatusBar.hide(); onDeviceReadyイベントを追加することです。

4
404

StatusBarを完全に非表示にする場合は、ブール値であるinfo.plistに2つのキーを追加できます。

Status bar is initially hidden - YES

View controller-based status bar appearance - NO
4
Sithys

Codova 6+での詳細な使用、および@sunilのソリューションの詳細については、

cordova plugins add -save cordova-plugin-statusbar

詳細な使用方法: https://www.npmjs.com/package/cordova-plugin-statusbar

3
Alfred Huang

@sunil解像度を適用しましたが、

私の問題はiOS 10の「コンテンツセキュリティポリシー」でした

Index.htmlに次の行を追加して問題を解決しました。

<meta http-equiv="Content-Security-Policy" content="default-src 'self' gap://ready file://* *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">
3
Abbas Mulani

config.xmlにこれらの行を追加すると、これが問題を修正し、ステータスバーが表示されます:

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

<preference name="StatusBarBackgroundColor" value="#000000"/>

<preference name="StatusBarStyle" value="lightcontent" />
0
Lakshay Sharma