在我的应用程序中,我想在用户打开 3G 时设置超时...经过一定时间后,我将关闭 3G ..我的问题是取消预定的计时器..每次我调用 timer.cancel( ) .. 程序抛出错误
当我调用 clearTimeout() 方法时出现问题..
Timer timer;
class RemindTask extends TimerTask {
public void run() {
//do something when time's up
log("timer","running the timertask..");//my custom log method
timer.cancel(); //Terminate the timer thread
}
}
public void setTimeout(int seconds) {
timer = new Timer();
timer.schedule(new RemindTask(), seconds*1000);
}
public void clearTimeout(){
log("timer", "cancelling the timer task");//my custom log method
timer.cancel();
timer.purge();
}
请帮助我..我是一个android初学者..