我应该输入config.xml
什么或一般应该做什么,才能让 PhoneGap Build 应用程序的启动屏幕在 Android 设备上以横向模式正确显示?
PhoneGap Build(用于编译)文档/博客对此一无所知。仅适用于 Android 的肖像。
由于 first (docs) 说 using height
andwidth
是跨平台支持的,所以我尝试使用它:
<gap:splash src="res/splash-200x320-android.png" gap:platform="android" gap:density="ldpi" width="200" height="320" />
<gap:splash src="res/splash-320x480-android-bada-ios.png" gap:platform="android" gap:density="mdpi" width="320" height="480" />
<gap:splash src="res/splash-480x800-android-bada-wp.png" gap:platform="android" gap:density="hdpi" width="480" height="800" />
<gap:splash src="res/splash-720x1280-android.png" gap:platform="android" gap:density="xhdpi" width="720" height="1280" />
<gap:splash src="res/splash-320x200-android.png" gap:platform="android" gap:density="ldpi" width="320" height="200" />
<gap:splash src="res/splash-480x320-android-bada-ios.png" gap:platform="android" gap:density="mdpi" width="480" height="320" />
<gap:splash src="res/splash-800x480-android-bada-wp.png" gap:platform="android" gap:density="hdpi" width="800" height="480" />
<gap:splash src="res/splash-1280x720-android.png" gap:platform="android" gap:density="xhdpi" width="1280" height="720" />
但是没有效果——在我的 Android 设备上的横向模式下,我总是看到我的初始屏幕的严重的 strechead portait 模式版本。