我正在制作一个国际象棋时钟,但在其中我需要延迟(就像它在计数前等待 10 秒一样)。我为它使用了一个处理程序,但是如果在 10 秒内单击该按钮,则没有任何反应。请帮忙!谢谢!我的代码:
mHandler.postDelayed(new Runnable() {
public void run() {
// count down timer start
timer2 = new CountDownTimer(totalSeconds, Integer.parseInt(delay.getText().toString())) {
public void onTick(long millisUntilFinished) {
secondsTimer = (int) (millisUntilFinished / 1000) % 60;
minutesTimer = (int) ((millisUntilFinished / (1000 * 60)) % 60);
hoursTimer = (int) ((millisUntilFinished / (1000 * 60 * 60)) % 24);
person2.setText(hoursTimer + ":" + minutesTimer + ":" + secondsTimer);
}
public void onFinish() {
person2.setText("Time Up!");
person2.setBackgroundColor(Color.RED);
mp.start();
}
}.start();
}
}, finalDelay);
我想要延迟,但我不想锁定 UI 并使应用程序没有响应,因为它现在正在处理处理程序。任何帮助将不胜感激!提前致谢!