Cordova   发布时间:2022-05-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了cordova – 删除标题栏Phonegap大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

如何删除在phonegap构建中应用程序开始时显示一秒左右的标题栏? 我尝试全屏,如 Phonegap remove title bar at start所示,它的工作,应用程序全屏但标题栏stil在应用程序开始时显示一秒左右. 当在本地构建时,我可以使用命令android:theme =“@ android:style / Theme.NotitleBar”>删除标题栏表单manifest.xm
如何删除在phonegap构建中应用程序开始时显示一秒左右的标题栏?
我尝试全屏,如 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://scheR_757_11845@as.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所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。