How do I prevent my CountDownTimer from running in background?

后端 未结 1 575
悲&欢浪女
悲&欢浪女 2020-12-19 19:54

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 CountDownTime

相关标签:
1条回答
  • 2020-12-19 19:56

    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.

    0 讨论(0)
提交回复
热议问题