我尝试使用以下插件为我的Cordova App添加启动画面:
https://www.npmjs.com/package/com.peerio.cordova.plugin.splashscreen
我已经在示例config.xml代码中复制并将src文件路径更改为我想要使用的图像。它提到:
Please notice that the value of the "src" attribute is relative to the project directory and not to the www directory. You can name the source image whatever you like. The internal name in the app is determined by Cordova.
基于此,我相信我的src应该是
/www/img/splash.jpg
?
无论我改变什么,它总是显示Cordova标志。有什么想法吗?
答案 0 :(得分:1)
你有没有尝试过:
<splash src="www/img/splash.jpg" density="land-hdpi"/>
没有前导/
?
修改强>
您正在展示您的browser
平台。你应该在platforms/android/res
寻找Android(如果你正在做cordova build android
)。
如果您需要浏览器平台,则在文档中有一个特定的Browser quirk。因此,默认情况下,图像src位于"/img/logo.png"
文件夹中的platforms/browser
。你必须设置:
<platform name="browser">
<preference name="SplashScreen" value="/images/browser/splashscreen.jpg" />
</platform>