3

我已按照此页面上非常明确的说明进行操作: 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>

任何帮助表示赞赏,谢谢!

4

2 回答 2

0

在此路径中添加<preference name="fullscreen" value="true" />:res/xml/config.xml。

它真的对我有用

于 2014-09-17T22:38:14.670 回答
0

只需将config.xml根据需要修改的文件放在与文件相同的目录中index.html

在此处输入图像描述

注意:在这种情况下,我们在public/目录中构建了我们的应用程序。所以所有的样式表和 javascripts 都已经编译并放在一个里面了。

现在只需观察魔法!

于 2013-08-19T10:05:43.553 回答