monacaでlandscape時のスプラッシュスクリーンの表示方法(android)
いつもお世話になっております。
monacaを利用して、cordovaハイブリッドアプリを開発しています。
スプラッシュスクリーンが表示されない問題が発生しています。
(指定した秒数の間は画面が暗転し、その後トップページが表示されます)
こちらで試した内容は以下の2点です。
いずれもスプラッシュスクリーンは表示されませんでした。
1.アプリを新規作成
アプリの設定 > [Android] > 画面の向き:[Landscape]として設定
デバッグビルド
2.アプリを新規作成
アプリの設定 > [Android] > 画面の向き:[Landscape]として設定
横画面用の9.png画像を用意し、config.xmlを
<splash src="/res/android/screen/splash-land-mdpi.9.png" density="land-mdpi"/>
と変更し、デバッグビルド
2を試した際、ビルドログには
cp: no such file or directory: /private/tmp/monaca/*************/project/res/android/screen/splash-land-mdpi.9.png
と表示されてしまいます。
スプラッシュファイルの設定画面には画面の向きごとの設定もないので、一括でいけるものかと考えていたのですが、どうやら違うようです...
解決策をご存知の方、ご教授頂けますでしょうか?
プロジェクト構成と、config.xmlは以下のになります。
○プロジェクト構成
[HelloWorld]
∟[.monaca]
∟[platforms]
∟[res]
∟[android]
∟[icon]
∟[screen]
∟ splash-land-hdpi.png
∟ splash-land-ldpi.png
∟ splash-land-mdpi.png
∟ splash-land-xhdpi.png
∟ splash-land-xxhdpi.png
∟ splash-land-xxxhdpi.png
∟ splash-port-hdpi.png
∟ splash-port-ldpi.png
∟ splash-port-mdpi.png
∟ splash-port-xhdpi.png
∟ splash-port-xxhdpi.png
∟ splash-port-xxxhdpi.png
∟[ios]
∟[winrt]
∟ .gitignore
∟ config.xml
∟ LICENSE
∟[www]
∟[components]
∟[css]
∟ index.html
○ config.xml
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" id="com.example.helloworld" version="1.0.0">
<name>Hello World App</name>
<description>Made with Monaca (http://monaca.mobi)</description>
<author/>
<content src="index.html"/>
<allow-navigation href="*"/>
<allow-intent href="itms:*"/>
<allow-intent href="itms-apps:*"/>
<preference name="loglevel" value="DEBUG"/>
<preference name="AndroidLaunchMode" value="singleTop"/>
<preference name="ErrorUrl" value=""/>
<preference name="SplashScreen" value="screen"/>
<preference name="AllowInlineMediaPlayback" value="false"/>
<preference name="AutoHideSplashScreen" value="true"/>
<preference name="BackupWebStorage" value="cloud"/>
<preference name="EnableViewportScale" value="false"/>
<preference name="FadeSplashScreen" value="true"/>
<preference name="FadeSplashScreenDuration" value="250"/>
<preference name="KeyboardDisplayRequiresUserAction" value="true"/>
<preference name="MediaPlaybackRequiresUserAction" value="false"/>
<preference name="ShowSplashScreenSpinner" value="false"/>
<preference name="SuppressesIncrementalRendering" value="false"/>
<preference name="TopActivityIndicator" value="gray"/>
<preference name="GapBetweenPages" value="0"/>
<preference name="PageLength" value="0"/>
<preference name="PaginationBreakingMode" value="page"/>
<preference name="PaginationMode" value="unpaginated"/>
<feature name="LocalStorage">
<param name="ios-package" value="CDVLocalStorage"/>
</feature>
<preference name="UIWebViewDecelerationSpeed" value="normal"/>
<preference name="ios-XCBuildConfiguration-TARGETED_DEVICE_FAMILY" value="1,2"/>
<platform name="ios">
<icon src="/res/ios/icon/icon.png" width="57" height="57"/>
<icon src="/res/ios/icon/icon@2x.png" width="114" height="114"/>
<icon src="/res/ios/icon/icon-72.png" width="72" height="72"/>
<icon src="/res/ios/icon/icon-72@2x.png" width="144" height="144"/>
<icon src="/res/ios/icon/icon-60.png" width="60" height="60"/>
<icon src="/res/ios/icon/icon-60@2x.png" width="120" height="120"/>
<icon src="/res/ios/icon/icon-60@3x.png" width="180" height="180"/>
<icon src="/res/ios/icon/icon-76.png" width="76" height="76"/>
<icon src="/res/ios/icon/icon-76@2x.png" width="152" height="152"/>
<icon src="/res/ios/icon/icon-40.png" width="40" height="40"/>
<icon src="/res/ios/icon/icon-40@2x.png" width="80" height="80"/>
<icon src="/res/ios/icon/icon-50.png" width="50" height="50"/>
<icon src="/res/ios/icon/icon-50@2x.png" width="100" height="100"/>
<icon src="/res/ios/icon/icon-small.png" width="29" height="29"/>
<icon src="/res/ios/icon/icon-small@2x.png" width="58" height="58"/>
<icon src="/res/ios/icon/icon-small@3x.png" width="87" height="87"/>
<icon src="/res/ios/icon/icon-83.5@2x~ipad.png" width="167" height="167"/>
<splash src="/res/ios/screen/Default~iphone.png" width="320" height="480"/>
<splash src="/res/ios/screen/Default@2x~iphone.png" width="640" height="960"/>
<splash src="/res/ios/screen/Default-568h@2x~iphone.png" width="640" height="1136"/>
<splash src="/res/ios/screen/Default-667h.png" width="750" height="1334"/>
<splash src="/res/ios/screen/Default-736h.png" width="1242" height="2208"/>
<splash src="/res/ios/screen/Default-Landscape-736h.png" width="2208" height="1242"/>
<splash src="/res/ios/screen/Default-Portrait~ipad.png" width="768" height="1024"/>
<splash src="/res/ios/screen/Default-Landscape~ipad.png" width="1024" height="768"/>
<splash src="/res/ios/screen/Default-Portrait@2x~ipad.png" width="1536" height="2048"/>
<splash src="/res/ios/screen/Default-Landscape@2x~ipad.png" width="2048" height="1536"/>
<config-file platform="ios" parent="CFBundleLocalizations" target="*-Info.plist">
<array>
<string>en</string>
</array>
</config-file>
</platform>
<platform name="android">
<icon src="/res/android/icon/ldpi.png" density="ldpi"/>
<icon src="/res/android/icon/mdpi.png" density="mdpi"/>
<icon src="/res/android/icon/hdpi.png" density="hdpi"/>
<icon src="/res/android/icon/xhdpi.png" density="xhdpi"/>
<icon src="/res/android/icon/xxhdpi.png" density="xxhdpi"/>
<icon src="/res/android/icon/xxxhdpi.png" density="xxxhdpi"/>
<splash src="/res/android/screen/splash-port-ldpi.png" density="port-ldpi"/>
<splash src="/res/android/screen/splash-port-mdpi.png" density="port-mdpi"/>
<splash src="/res/android/screen/splash-port-hdpi.png" density="port-hdpi"/>
<splash src="/res/android/screen/splash-port-xhdpi.png" density="port-xhdpi"/>
<splash src="/res/android/screen/splash-port-xxhdpi.png" density="port-xxhdpi"/>
<splash src="/res/android/screen/splash-port-xxxhdpi.png" density="port-xxxhdpi"/>
<splash src="/res/android/screen/splash-land-ldpi.png" density="land-ldpi"/>
<splash src="/res/android/screen/splash-land-mdpi.png" density="land-mdpi"/>
<splash src="/res/android/screen/splash-land-hdpi.png" density="land-hdpi"/>
<splash src="/res/android/screen/splash-land-xhdpi.png" density="land-xhdpi"/>
<splash src="/res/android/screen/splash-land-xxhdpi.png" density="land-xxhdpi"/>
<splash src="/res/android/screen/splash-land-xxxhdpi.png" density="land-xxxhdpi"/>
</platform>
<platform name="windows">
<icon src="/res/winrt/icon/package_logo_winrt.png" target="StoreLogo"/>
<icon src="/res/winrt/icon/app_logo_winrt.png" target="Square150x150Logo"/>
<icon src="/res/winrt/icon/app_small_logo_winrt.png" target="Square30x30Logo"/>
<icon src="/res/winrt/icon/app_tile_wide_logo_winrt.png" target="Wide315x150Logo"/>
<splash src="/res/winrt/screen/app_splash_screen_winrt.png" width="620" height="300"/>
</platform>
<platform name="chrome">
<icon src="/platforms/chrome/icon.png" width="128" height="128"/>
</platform>
<preference name="WindowsStorePublisherName" value="My Name"/>
<preference name="WindowsStoreIdentityName" value="ca30d585-5e70-ddeb-e273-f4ffe0bd1059"/>
<access origin="*"/>
<preference name="KeepRunning" value="true"/>
<preference name="monaca:AndroidIsPackageNameSeparate" value="false"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="Orientation" value="landscape"/>
<preference name="SplashScreenDelay" value="1000"/>
<preference name="Fullscreen" value="false"/>
</widget>