我使用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="info@bensishop.com" href="http://www.bensishop.com">
Bensishop
</author>
<content src="index.html" />
<platform name="android">
<preference name="Fullscreen" value="true" />
</platform>
</widget>
我做错了什么或者我需要添加什么? 有人可以帮我解决这个问题吗?
答案 0 :(得分:1)
打开phonegap构建的项目并编辑AndroidManifest.xml文件。
将其放在所有活动中:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"