暂停计时器,然后继续

请参阅@Yuri从这里发布的代码。 如何在一定次数后停止定时器。 如果由于某种原因想要停止它,然后重新启动它。 我该怎么去做呢?

    private final static int DELAY = 10000;
    private final Handler handler = new Handler();
    private final Timer timer = new Timer();
    private final TimerTask task = new TimerTask() {
        private int counter = 0;
        public void run() {
            handler.post(new Runnable() {
                public void run() {
                    Toast.makeText(MainActivity.this, "test", Toast.LENGTH_SHORT).show();
                }
            });
            if(++counter == 4) {
                timer.cancel();
            }

    //do some stuff in my app
   //restart the timer again

        }
    };

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        timer.schedule(task, DELAY, DELAY);

    }

这是我尝试过的,但它一直在崩溃。

    final int DELAY = 10000;
        Timer timer;
        MyTask task;
        startManager Scanner;
        Handler handler;



        public class MyTask extends TimerTask {

            @Override
            public void run() {
                handler.post(new Runnable() {
                    public void run() {
                        //do Stuff here
                        }
        });
    }
        public class startManager {

            public startManager() {
                handler = new Handler();
                timer = new Timer();
            }

            public void start() {

                timer.schedule(task, 0, DELAY);
            }

            public void cancel() {

                timer.cancel();
                timer.purge();

            }
        }

    }

 @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);

Scanner = new startManager();
//do some stuff
 if (...)
Scanner.cancel()
//restart the timer and its task
Scanner=new startManager();
        }

如果你已经取消了一个定时器,你不能重新启动它,你将不得不创建一个新的定时器。

看到这个答案,它包含一个视频和源代码,我是如何做类似的。

基本上有两种方法:暂停和恢复

暂停时:

public void pause() {
    this.timer.cancel();
}

简历中:

public void resume() {
    this.timer = new Timer();
    this.timer.schedule( aTask, 0, 1000 );
}

这使得停顿/恢复的感觉。

如果您的定时器根据应用程序的状态执行不同的操作,则可以考虑使用StatePattern

拳头定义一个抽象状态:

abstract class TaskState  {
    public void run();
    public TaskState next();
}

并提供尽可能多的状态,只要你喜欢。 关键是一个国家会把你引向另一个国家。

class InitialState extends TaskState {
    public void run() {
        System.out.println( "starting...");
    }
    public TaskState next() {
         return new FinalState();
    }
 }
 class FinalState extends TaskState  {
     public void run() {
         System.out.println("Finishing...");
     }
     public TaskState next(){
         return new InitialState();
    }
 }

然后你改变你的计时器的状态。

Timer timer = new Timer();
TaskState state = new InitialState();

timer.schedule( new TimerTask() {
     public void run() {
          this.state.run();
          if( shouldChangeState() ) {
              this.state = this.state.next();
           }
     }
 }, 0, 1000 );

最后,如果你需要的是执行同样的事情,但速度不同,你可以考虑使用TimingFramework。 这有点复杂,但让我们做一些很酷的动画,让某些组件的绘制以不同的速率进行(而不是线性的)


似乎没有办法做到这一点:http://docs.oracle.com/javaee/6/api/javax/ejb/Timer.html

你可能会取消定时器,然后创建一个新的定时器。


设计出来了,这是因为我没有在startManager()中初始化任务

链接地址: http://www.djcxy.com/p/74917.html

上一篇: Pause the timer and then continue it

下一篇: How to stop TimerTask already in execution?