使用CountDownTimer时需要处理后台限制吗?

时间:2019-04-01 10:45:28

标签: android background countdowntimer

我最近发现了CountDownTimer类,在其文档中,我从未见过任何有关CountDownTimer在后​​台工作的内容。 在上这堂课时,我需要考虑背景限制吗?

 new CountDownTimer(30000, 1000) {//do i need to send this task to the backgournd ?

 public void onTick(long millisUntilFinished) {
     mTextField.setText("seconds remaining: " + millisUntilFinished / 1000);
 }

 public void onFinish() {
     mTextField.setText("done!");
 }
}.start();

0 个答案:

没有答案