How do I prevent my CountDownTimer from running in background?

雨燕双飞 提交于 2019-11-28 05:22:36

问题


I am making an Android app that has a time limit to the amount of points you can get. But if you close the app, the timer keeps going. How do I pause the CountDownTimer when the app pauses?


回答1:


You can cancel it in onPause() with something like

@Override
public void onPause()
{
    super.onPause();
    timer.cancel();    // timer is a reference to my inner CountDownTimer class
    timer = null;
}

And use the millisUntilFinished variable to save in a SharedPreference or some other persistent variable. Then use that variable again to start the timer in onResume()

Shared Prefs

This answer may be helpful if you need to pass the value to another Activity.



来源:https://stackoverflow.com/questions/27333742/how-do-i-prevent-my-countdowntimer-from-running-in-background

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!