我有一个更新 TextView 的 CountDownTimer,但是当我按下后退按钮时它会停止。
CountDownTimer timer = new CountDownTimer(600000, 100) {
public void onTick(long millisUntilFinished) {
calendar.setTimeInMillis(millisUntilFinished);
cron.setText(sf.format(calendar.getTime()));
}
public void onFinish() {
}
};
当我按下后退按钮并且活动被破坏时,如何保持它运行?
PS:定时器启动时我也启动了一个GPS服务,有没有办法把CountDownTimer放在服务中?