Android等待3秒跳转

首先实例化一个 Handler,然后在要跳转的地方使用postDelayed这个方法,要实现的内容放 run()方法里面

 

 1   private Handler handler = new Handler();
 2 
 3         
 4                 handler.postDelayed(new Runnable() {
 5                         @Override
 6                         public void run() {
 7                                 Intent intent = new Intent(getApplicationContext(),MainActivity.class);
 8                 this.startActivity(intent);
 9                         }
10                 }, 3000);
11 
12                 }

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。