我尝试全屏,如 Phonegap remove title bar at start所示,它的工作,应用程序全屏但标题栏stil在应用程序开始时显示一秒左右.
当在本地构建时,我可以使用命令androID:theme =“@ androID:style / theme.NoTitlebar”>删除标题栏表单manifest.xml.
如何从phonegap构建中完全删除标题栏?
我通过将这些行添加到config.xml来解决它
<gap:config-file platform="androID" parent="/manifest"> <supports-screens androID:xlargeScreens="false" androID:largeScreens="false" androID:smallScreens="false" /> <application androID:theme="@androID:style/theme.NoTitlebar" > <activity androID:theme="@androID:style/theme.NoTitlebar.Fullscreen" ></activity> </application></gap:config-file>解决方法 Alex已在第一篇文章中提供了解决方案.我想澄清两件事:
>您无需禁用对某些屏幕尺寸的支持即可使用.请注意,我已将supports-screens的属性更改为true
>您还需要提供一个androID命名空间,或者PhoneGap Build会抱怨“格式错误的config.xml”(参见下面的粗体行)
所以这将是你的config.xml:
<Widget xmlns = "http://www.w3.org/ns/Widgets" xmlns:gap = "http://phonegap.com/ns/1.0"
xmlns:androID =“http://schemas.androID.com/apk/res/androID”
ID = "com.domain.app" version = "1.0.0"> ... <gap:config-file platform="androID" parent="/manifest"> <supports-screens androID:xlargeScreens="true" androID:largeScreens="true" androID:smallScreens="true" /> <application androID:theme="@androID:style/theme.NoTitlebar" > <activity androID:theme="@androID:style/theme.NoTitlebar.Fullscreen" > </activity> </application> </gap:config-file></Widget>
帽子提示到野生动物on github.
总结以上是内存溢出为你收集整理的cordova – 删除标题栏Phonegap全部内容,希望文章能够帮你解决cordova – 删除标题栏Phonegap所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)