android 延时线程

来源:互联网 发布:网络简介的阅读答案 编辑:程序博客网 时间:2024/04/30 16:35



 在Java中有时候需要使程序暂停一点时间,称为延时。普通延时用Thread.sleep(int)方法,这很简单。它将当前线程挂起指定的毫秒数。


  1. try   
  2. {   
  3. Thread.currentThread().sleep(1000);//毫秒   
  4. }   
  5. catch(Exception e){
  6. }  

在这里需要解释一下线程沉睡的时间。sleep()方法并不能够让程序"严格"的沉睡指定的时间。例如当使用5000作为sleep()方法的参数时,线 程可能在实际被挂起5000.001毫秒后才会继续运行。当然,对于一般的应用程序来说,sleep()方法对时间控制的精度足够了。

 

但是如果要使用精确延时,最好使用Timer类:


延时跳转界面

Timer timer = new Timer();
TimerTask task = new TimerTask() {
   @Override
   public void run() {
      // TODO Auto-generated method stub
      Intent intent = new Intent(getActivity()MobilePosType.class);
      startActivity(intent);
   }
};

timer.schedule(task1000);




0 0