我正在为 Android 2.2 设计计时器/倒数计时器应用程序,并希望按下一个按钮即可同时启动计时器和计时器。因此,理想情况下,我希望计时器和计时器上的秒数(时间)同时更改。(即使计时器正在向上计数,计时器也会倒计时)。由于我使用的是 Android 提供的计时器和计时器功能,因此当用户按下“开始”按钮时,我编写了以下代码
private boolean mStartPressedOnce = false;
long mTimeWhenStopped = 0;
Chronometer mChronometer;
MyCounter mCounter;
...
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.StartButton:
// Perform some initialization for the chronometer depending
// on the button press
if (mStartPressedOnce == false) {
mChronometer.setBase(SystemClock.elapsedRealtime());
} else {
mChronometer.setBase(SystemClock.elapsedRealtime() + mTimeWhenStopped);
}
// Perform the initialization for the timer
mCounter = new MyCount(45000, 1000);
// Fire up the chronometer
mChronometer.start();
// Fire up the timer
mCounter.start();
break;
case R.id.ResetButton:
// Reset the chronometer
mChronometer.setBase(SystemClock.elapsedRealtime());
mTimeWhenStopped = 0;
break;
case case R.id.StopButton:
mStartPressedOnce = true;
// Stop the chronometer
mTimeWhenStopped = mChronometer.getBase() - SystemClock.elapsedRealtime();
mChronometer.stop();
break;
}
...
public class MyCounter extends CountDownTimer {
@Override
public MyCount(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}
@Override
public void onFinish() {
// Nothing to do here
}
@Override
public void onTick(long millisUntilFinished) {
long seconds = (long) (millisUntilFinished / 1000);
long minutes = (long) ((millisUntilFinished / 1000) / 60);
long hours = (long) (((millisUntilFinished / 1000) / 60) / 60);
// Do some formatting to make seconds, minutes and hours look pretty
// Update the timer TextView
(TextView) findViewById(R.id.CountDownTimerTextView))
.setText(hours + ":" + minutes + ":" + seconds);
}
}
虽然看起来计时器和计时器上的秒数最初是同步的,但在很短的时间之后,它们似乎会消失,并且两者的第二次更新发生在不同的时间。
想知道我能做些什么来解决这个问题。我确实遇到过 - 并阅读了这个帖子
我意识到可能需要进行设计更改,但我不确定需要做什么。
编辑:包括计时器和计时器的类型以及使用 Chronometer 计算时间的方法 - 根据 jolivier 和 njzk2 的建议