@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_splash); handler.postDelayed(new Runnable() { @Override public void run() { //两秒后才执行到这里 //执行在主线程中 startMainActivity(); Log.e(TAG, "当前线程名称==" + Thread.currentThread().getName()); } }, 2000);
显示2秒。