SplashScreenの使い方も変わっていたに書いたように、PhoneGap(Cordova)3.0になり、SplashScreenの使い方が変わっています。SplashScreenにかぎらず、PhoneGapのAPI全般にプラグインの構成が変わり、インターフェースがCLI(コマンドラインインターフェース)になっているので、使うAPI毎にコマンドラインで追加する必要があります。
もう一つ、まだ、Documentationには、組み込み方が
super.setIntegerProperty(“splashscreen”, R.drawable.splash);
super.loadUrl(Config.getStartUrl(), 10000);
のように載っていますが、これだと
Setting integer properties in CordovaActivity will be deprecated in 3.0 on July 2013, please use config.xml
というメッセージが出ます。
super.setIntegerProperty(“splashscreen”, R.drawable.splash);
をやめて、
res/xml/config.xmlに
<preference name=”splashscreen” value=”splash” />
を追加するとメッセージはでなくなります。