config.xml
ランドスケープモードのAndroidデバイスでPhoneGapBuildアプリケーションのスプラッシュ画面を正しく表示するには、何を入力する必要がありますか、または一般的に何をする必要がありますか?
PhoneGap Build(コンパイルに使用)ドキュメント/ブログにはこれについて何もありません。AndroidではPortraitのみが対象です。
最初の(docs)は、height
とwidth
はクロスプラットフォームでサポートされていると言っているので、私はそれを使おうとしました:
<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デバイスのランドスケープモードでは、スプラッシュ画面のストレックヘッドポートレートモードバージョンが常に表示されます。