我已按照此页面上非常明确的说明操作: 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>
感谢任何帮助,谢谢!
答案 0 :(得分:0)
只需将config.xml
文件(根据需要进行修改)放在与index.html
文件相同的目录中:
注意:在这种情况下,我们的应用程序是在public/
目录中构建的。因此,所有样式表和javascripts都已编译并放在一个样式中。
现在只是观察魔法!
答案 1 :(得分:0)
在此路径中添加<preference name="fullscreen" value="true" />
:
RES / XML / config.xml中。
它真的对我有用