android默认页面几秒后自动跳转另一页面

时间:2022-11-09 18:07:58
//android默认页面几秒后自动跳转另一页面 
//activity
super.onCreate(paramBundle);
  setContentView(R.layout.splash_screen_view);
  final Intent localIntent=new Intent(this,Main.class);
  Timer timer=new Timer();
  TimerTask tast=new TimerTask()
  {
   @Override
   public void run(){
    startActivity(localIntent);
   }
  };
  timer.schedule(tast,DELAY);