在使用Eclipse设计Android应用程序时,如何轻松地从一个活动切换到另一个活动

时间:2016-01-22 20:53:32

标签: java android eclipse

在使用名称然后是常规活动打开应用程序时,告诉我一个简单的方法

1 个答案:

答案 0 :(得分:0)

通过这样做,你可以从另一个开始一个活动:

Intent myIntent = new Intent(CurrentActivity.this, NextActivity.class);
myIntent.putExtra("key", value); //Optional parameters
CurrentActivity.this.startActivity(myIntent);

修改

如果你需要一个启动画面,这里有一个解决方案:

How do I make a splash screen?

/** Duration of wait **/
private final int SPLASH_DISPLAY_LENGTH = 1000;

/** 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.*/
    new Handler().postDelayed(new Runnable(){
        @Override
        public void run() {
            /* Create an Intent that will start the Menu-Activity. */
            Intent mainIntent = new Intent(Splash.this,Menu.class);
            Splash.this.startActivity(mainIntent);
            Splash.this.finish();
        }
    }, SPLASH_DISPLAY_LENGTH);
}