我正在创建一个Android应用程序。我有一个logo screen(Activity)
,然后是home screen(another activity)
。我希望当我启动我的应用程序时,我的徽标屏幕应该会在2秒后自动显示我的主屏幕。任何人都可以告诉我应该做些什么吗?
答案 0 :(得分:8)
请用这个..
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class Logo extends Activity {
protected boolean _active = true;
protected int _splashTime = 2000;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.logo);
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
public void run() {
finish();
Intent i3 = new Intent(Logo.this, Home.class);
startActivity(i3);
}
}, _splashTime);
}
}
答案 1 :(得分:1)
您可以使用TimerTask.On TimerTask在2分钟后安排任务。并执行以下任务
要使用Timer Task,请参阅链接 TimerTask
LogoScreen.this.startActivity(new Intent(LogoScreen.this,HomeScreen.class));
答案 2 :(得分:0)
您可以使用CountDownTimer在一段时间后自动打开活动
当 CountDownTimer 完成后,您可以在 onFinish()
方法中编写
更改活动的代码。