我必须重新启动 CountDownTimer。我在这里阅读了很多问题,但没有一个答案对我有帮助。当我使用以下代码时
if(Const.counter != null){
Const.counter.cancel();
Const.counter = null;
}
Const.counter = new CustomTimerTask(Const.currentLevel.timeGoal * 1000,1000);
Const.counter.start();
我开了一个新柜台,但旧柜台也继续工作。请帮我解决它。