我已经使用PhoneGap开发了一个应用程序。我需要隐藏菜单和操作栏,但是代码无法按照我现在的方式工作。下面是获取全屏显示的小config.xml文件。

<?xml version="1.0" encoding="UTF-8" ?>
<widget id="com.bensishop.bensishopapp" version="0.0.1">
    <name>BensiShop</name>
    <description>
        Bensishop app
    </description>
    <author email="[email protected]" href="http://www.bensishop.com">
        Bensishop
    </author>
    <content src="index.html" />
   <platform name="android">
    <preference name="Fullscreen" value="true" />
   </platform>
</widget>


我在做什么错或需要添加什么?
有人可以帮我这个忙吗?

最佳答案

打开由phonegap构建的项目,然后编辑AndroidManifest.xml文件。

将其放在所有活动中:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

10-06 03:42