【发布时间】:2012-01-05 21:37:32
【问题描述】:
我正在为 Android 和 iOS(iPhone 和 iPad)构建 Sencha Touch + PhoneGap 应用程序。我在 PhoneGap 选择正确的图标和启动屏幕以显示正确的设备时遇到重大问题。
例如: Android 会加载正确的主图标,但是,它会加载一个非常像素化的启动屏幕(我相信它会加载一个 320x460 iphone 屏幕。)
iPhone 和 iPad 上的 iOS 均显示 android 图标,并且未加载正确的初始屏幕。
我真的被困在这个问题上,如果能就此事提供任何意见,我将不胜感激,在此先感谢!
我的 config.xml 代码如下:
<icon src="res/icons/icon.png" />
<icon src="res/icons/icon-blackberry-92.png" default="true" />
<icon src="res/icons/icon-blackberry-92-hover.png" hover="true" />
<icon src="res/icons/icon.png" width="57" height="57"/>
<icon src="res/icons/icon-72.png" width="72" height="72"/>
<icon src="res/icons/icon@2x.png" width="114" height="114"/>
<icon src="res/icons/icon-android-36.png" width="36" height="36"/>
<icon src="res/icons/icon-android-48.png" width="48" height="48"/>
<icon src="res/icons/icon-android-72.png" width="72" height="72"/>
<gap:splash src="res/splash/Default@2x.png" width="640" height="960" />
<gap:splash src="res/splash/Default.png" width="320" height="460" />
<gap:splash src="res/splash/splash-screen-ios-ipad.png" width="786" height="1024" />
<gap:splash src="res/splash/splash-screen-400x800.png" width="400" height="800" />
<gap:splash src="res/splash/Default.png" />
【问题讨论】:
标签: android ios cordova icons sencha-touch