リソースが読み込まれている間、アニメーション画像(現在はPNGのセットを使用)をスプラッシュ画面として表示したいと思います。
これを使ってスプラッシュ画面を表示することができました。ただし、問題は次のとおりです。スプラッシュ画面が指定された時間表示された後、2〜3秒間黒い画面が表示され、その後index.html
ロードされます。
理想的には、リソースがロードされている間、スプラッシュ画面を表示することです。リソースがロードされたら、スプラッシュ画面をプルしてすぐにindex.html
ファイルをロードします。
以下は私のコードです:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Splash screen view
setContentView(R.layout.splash);
// Start animating the image
final ImageView splashImageView = (ImageView) findViewById(R.id.SplashImageView);
splashImageView.setBackgroundResource(R.drawable.flag);
final AnimationDrawable frameAnimation = (AnimationDrawable)splashImageView.getBackground();
splashImageView.post(new Runnable(){
@Override
public void run() {
frameAnimation.start();
}
});
final SplashScreen sPlashScreen = this;
// The thread to wait for splash screen events
mSplashThread = new Thread(){
@Override
public void run(){
try {
synchronized(this){
// Wait given period of time or exit on touch
wait(10000);
}
}
catch(InterruptedException ex){
}
finish();
// Run next activity
Intent intent = new Intent();
intent.setClass(sPlashScreen, SomeActivity.class);
startActivity(intent);
//stop();
}
};
mSplashThread.start();
}
public class SomeActivity extends DroidGap {
@Override
public void onCreate(Bundle savedInstanceState) {
//some code to copy database files.
}
}
私の開発環境に注意してください。android-sdk:apiレベル17、Phonegap:2.1.0。