3

我用过这样的倒数计时器

new CountDownTimer(15000, 15) {

             public void onTick(long millisUntilFinished) {

                 long seconds=millisUntilFinished/1000;
                 long min=millisUntilFinished%100;

                 timeleft=(int) (seconds*1000+min);
                 if(millisUntilFinished>=10000)
                 {
                     changeText.setTextColor(Color.GREEN);
                 }
                 else if(millisUntilFinished>=5000)
                 {
                     changeText.setTextColor(Color.MAGENTA); 
                 }
                 else
                 {
                     changeText.setTextColor(Color.RED);

                 }
                 changeText.setText(String.format("%02d", seconds )+ "."+String.format("%02d", min )+" sec");

             }

             public void onFinish() {

                 timeleft=0;
                 missed++;
                  nametext.setTextColor(Color.RED);
                 nametext.setText("Time Up!");
                      bottombutton.setVisibility(View.INVISIBLE);   
                    globalflag=13;
                changeText.setTextColor(Color.RED);
                changeText.setText("0.00 Sec");
                    Handler myHandler = new Handler();
                    myHandler.postDelayed(mMyRunnablecif, 3000);



             }
          }.start(); 

在一个按钮上单击我已经调用cancel()但它停止计数一段时间然后调用onFinish(). 我不需要打电话onFinish()后打电话cancel()。有什么解决方案。任何帮助将不胜感激。

4

3 回答 3

3

在您的内部onClick设置一个布尔值(例如 buttonPressed)为真。

在你onFinish检查这个布尔值:

if (buttonPressed == true)
{
    //do nothing
}
else
{
    //run code
}
于 2012-06-07T07:04:41.400 回答
2

您可以改用Timer并执行以下操作:

private Runnable mUpdateTimeTask = new Runnable() {
    public void run() {
        // do your updates here
        mUpdateTimeHandler.postDelayed(this, 1000);
    }
};

Handler mUpdateTimeHandler = new Handler();
mUpdateTimeHandler.postDelayed(mUpdateTimeTask, 100);

取消任务时:

mUpdateTimeHandler.removeCallbacks(mUpdateTimeTask);
于 2012-06-07T07:37:11.173 回答
0

我也不明白为什么尽管调用了取消(),但仍然调用了 onFinish。我想唯一的解决方法是在 onFinish 中检查你的调用以防止任何 NPE。

public void onFinish() {
   if (nametext == null || bottombutton == null || changeText == null || ... ) {
      return;
   }
...
于 2020-03-19T05:15:13.870 回答