我已按照此页面上非常明确的说明进行操作: https ://build.phonegap.com/docs/config-xml
我在我的 config.xml 文件中包含了以下行(它确实位于我的应用程序的顶层):
<preference name="fullscreen" value="true" />
然而屏幕顶部的状态栏仍然存在。
如果有帮助,这是我的完整 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 = "com.universeprojects.voidspace"
versionCode="10"
version = "0.1.2b">
<!-- versionCode is optional and Android only -->
<name>VoidSpace - DevServer</name>
<description>
This is a special version of VoidSpace that connects to the development server.
</description>
<author href="https://voidspace.ca" email="support@universeprojects.com">
Nikolas Gauvreau
</author>
<preference name="EnableViewportScale" value="true" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="false" />
<icon src="icon.png" />
<gap:splash src="splash.png" />
</widget>
任何帮助表示赞赏,谢谢!