如何在 sencha touch cordova 应用程序中更改启动画面

How to change splash screen in sencha touch cordova app

我已经在 sencha touch cordova 中创建了一个应用程序。我已使用 cordova 文件夹中 config.xml 文件中的以下代码成功更改了应用程序图标,但 windows 8.1 phone.

的启动画面没有更改
<platform name="wp8">
    <icon src="www/resources/icons/icon.png"/>
    <splash src="www/resources/startup/splash.png"/>
</platform>
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="7000" />

我尝试了具有适合我的特定高度和宽度属性的启动画面。

例如:

<platform name="wp8">
    <icon src="www/resources/startup/Icon.png"/>
    <splash height="1280" src="www/resources/startup/Splash-768x1280.png" width="768"/>
</platform>

有关启动画面配置的更多信息,请参阅: http://docs.phonegap.com/en/edge/cordova_splashscreen_splashscreen.md.html https://cordova.apache.org/docs/en/4.0.0/config_ref_images.md.html