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);

相关文章:

  • 2021-12-15
  • 2022-12-23
  • 2021-10-13
  • 2021-08-26
  • 2022-03-04
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案