Cordova - 是否可以在config.xml中配置Windows应用程序图标和启动画面?

时间:2014-05-22 18:53:42

标签: windows cordova windows-store-apps

在创建Windows应用程序的平台文件夹之前,是否可以在config.xml文件中配置图标和启动画面?如果是这样,怎么样?

我查看了phonegap site上的文档,但没有找到方法。

谢谢!

1 个答案:

答案 0 :(得分:3)

config.xml 中,要更改图标属性:

如果是Windows Phone8,

 <platform name="wp8">
          <icon src="res/wp/ApplicationIcon.png" width="99" height="99" />
          <!-- tile image -->
          <icon src="res/wp/Background.png" width="159" height="159" />
 </platform>

如果是Windows8,

 <platform name="windows8">
          <icon src="res/windows8/logo.png" width="150" height="150" />
          <icon src="res/windows8/smalllogo.png" width="30" height="30" />
          <icon src="res/windows8/storelogo.png" width="50" height="50" />
 </platform>

Windows Phone指定单个闪屏图像:

windows-phone/screen-portrait.jpg

请参阅this文档。