SplashActivity
画像を表示するには、Hander.postDelayed()
を使用して、この画面をstartActivityからメイン画面に15秒遅らせます。
public class Splash extends Activity {
/** Duration of wait **/
private final int SPLASH_DISPLAY_LENGTH = 15000;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.splashscreen);
/* New Handler to start the Menu-Activity
* and close this Splash-Screen after some seconds.*/
//Load data
new Handler().postDelayed(new Runnable(){
@Override
public void run() {
/* Create an Intent that will start the Menu-Activity. */
Intent mainIntent = new Intent(Splash.this,MainActivity.class);
Splash.this.startActivity(mainIntent);
Splash.this.finish();
}
}, SPLASH_DISPLAY_LENGTH);
}
}
そして、どのように自分のアプリケーションの最初の起動でこれを行うには:ここでは
は一例ですか? –
スプラッシュはアクティビティです。 AndroidManifest – phongvan
にMAINを設定する必要があります。あなたのコードが私を助けませんでした。私がMainActivityをインテントで使用し始めると、 –