我正在设计一个倒数计时器,它完美无缺,但只有我留在这个Activity
。因为,如果倒计时开始并且我返回例如并开始其他Activity
,则countdonws会倒计时。而且从逻辑上讲,如果我再次开始倒数计时器所在的活动,看起来似乎没有倒计时,但是在bacground中倒计时,我知道因为在计时器的ontick上,我抛出一个继续通知以显示它通知标签。
代码如下:sendnotification方法是一种在时间结束时抛出警报的方法,sendnotificationTiempo
每秒向选项卡发送一个通知以显示在顶部。
public static final int NOTIFICATION_ID = 33;
public static final int NOTIFICATION_ID_Tiempo = 34;
private int minCrono;
TextView text;
MyCounter timer;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
StartCrono = (Button) findViewById(R.id.butt_start);
CancelCrono = (Button) findViewById(R.id.butt_cancel);
text=(TextView)findViewById(R.id.text_countTime1);
CancelCrono.setEnabled(false);
minCrono = mins.getCurrentItem();
StartCrono.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
minCrono=(60000*minCrono);
timer = new MyCounter(minCrono,1000);
timer.start();
}
});
CancelCrono.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
timer.cancel();
text.setText("El tiempo se ha cancelado");
minutosCrono = mins.getCurrentItem();
if (mNotificationManager != null)
mNotificationManager.cancel(NOTIFICATION_ID_Tiempo);
}
});
}
倒计时课程:
public class MyCounter extends CountDownTimer{
public MyCounter(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}
@Override
public void onFinish() {
StartCrono.setEnabled(true);
CancelCrono.setEnabled(false);
mins.setEnabled(true);
minCrono = mins.getCurrentItem();
//
text.setText("Time Complete!");
sendnotification("Guau", "Time finished.");
}
@Override
public void onTick(long millisUntilFinished) {
long segRestantesTotal=(millisUntilFinished/1000);
long minRestantes= (segRestantesTotal/60);
long segRestantes= (segRestantesTotal%60);
if(segRestantes>=10){
text.setText(minRestantes+":"+segRestantes);
sendnotificationTiempo("Guau", minRestantes+":"+segRestantes);
}
else{
text.setText(minRestantes+":0"+segRestantes);
sendnotificationTiempo("Guau", minRestantes+":0"+segRestantes);
}
}
}
}
所以我要做的就是知道我何时回到Activity
并开始另一个,以显示在背景中倒计时的时间,例如在textview中显示它。 / p>
或者,如果我可以从通知选项卡中获得完美的倒计时时间。 谢谢!
答案 0 :(得分:0)
将MyCounter实例移出活动。当Activity重新启动时,正在重新创建实例,以便旧的实例消失。有几种方法可以做到这一点,但是您需要将MyCounter实例放在Activity可以访问它的某个地方,但不对其生命周期负责。我使用了我编写的基本ServiceLocator实现,但您可以轻松创建自定义Application类并保留定时器(或创建和控制定时器的控制器类)。