我正在使用 Phonegap 桌面应用程序创建一个应用程序,有时使用 Phonegap Build,我注意到我的网站与我的显示器一样大。
问题:不同的设备例如有一个状态栏(时钟、电池状态等),例如我的 Nexus 甚至有一个底部栏,其中显示在我的应用程序上的控制按钮。我的(带有 css 位置:固定的)导航栏在这些设备原生栏下滚动。
知道如何拒绝或减去这些条吗?如果我没有包含任何服装样式或样式库,我什至可以看到这一点。
HTML
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1,
maximum-scale=1, minimum-scale=1, width=device-width,
height=viewport-height, target-densitydpi=device-dpi" />
<title>Streetreporter</title>
<!-- jQuery library -->
<script src="libs/jQuery/jquery-1.12.4.js" type="text/javascript"></script>
<script type="text/javascript" src="cordova.js"></script>
</head>
<body >
TO DO content
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>
CONFIG.xml ## 缩短
<?xml version="1.0" encoding="UTF-8"?>
<!-- config.xml reference: https://build.phonegap.com/docs/config-xml -->
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "app.streetreporter"
version = "0.1.0">
<name>Streetreporter+Camera API Test</name>
<description>
Hello World sample application that responds to the deviceready event.
</description>
<author href="http://phonegap.com" email="support@phonegap.com">
PhoneGap Team
</author>
<content src="index.html"/>
<preference name="permissions" value="none"/>
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="true" />
<preference name="prerendered-icon" value="true" />
<preference name="stay-in-webview" value="true" />
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="detect-data-types" value="true" />
<preference name="exit-on-suspend" value="false" />
<preference name="show-splash-screen-spinner" value="true" />
<preference name="auto-hide-splash-screen" value="true" />
<preference name="disable-cursor" value="false" />
<preference name="android-installLocation" value="auto" />
</widget>