我在一项活动的不同时间开始了一些计时器。每个计时器都有自己的到期时间。但是我希望在发生特定情况时停止所有在后台运行的计时器。
如何在Android中停止在后台运行多个计时器?
答案 0 :(得分:0)
您可以轻松取消计时器。 检查以下代码。
private static Timer abc_Timer;
abc_Timer=new Timer();
/*`your logic`*/
abc_Timer.cancel(); //cancel method will cancel your timer
//After use of cancel method use
abc_timer.purge(); //this method will remove all cancelled timer.