Appmethodでは、Androidは、iOSのように起動時にスプラッシュ画像を表示しないので対応する。
参考URL:http://blog.hjf.pe.kr/122
①AndroidManifest.template.xmlの編集
before
android:theme="%theme%">
after
android:theme="@style/MyTheme.NoTitleBar.SplashWindow">
②スプラッシュ画像用意 ex) res/splash.png
③styles.xml用意 ex) res/styles.xml
<resources> <style name="MyTheme.NoTitleBar.SplashWindow" parent="@android:Theme.Holo"> <item name="android:windowBackground">@drawable/splash</item> <item name="android:windowNoTitle">true</item> <item name="android:windowFullscreen">true</item> </style> </resources>
④プロジェクト > 配置
splash.png > res\drawable\
styles.xml > res\values\