1

我在 Android 上玩 CountDownTimer,我陷入了困境。在我的代码中,我有以下内容:

public class mCountDownTimer extends CountDownTimer{
    protected boolean hasFinished = false;
    public mCountDownTimer(long millisInFuture, long countDownInterval) {
        super(millisInFuture, countDownInterval);
        // TODO Auto-generated constructor stub
    }
    public void onFinish(){
        hasFinished = true;
    }
    @Override
    public void onTick(long millisUntilFinished) {
        // TODO Auto-generated method stub

    }
}

基本上我想知道我的 CountDownTimer 是否已经完成。但是在我想调用它的函数中,我有一些代码:

public void function(){
public boolean finished = false;
    if(interrupted)
        countDownTimer.cancel();
    if(temporaryCountHolder == false){
        countDownTimer.start();
        interrupted = true;
    }
}

我怎么知道我的计时器是否已经结束?我想实现一些内容:

 if(countDownTimer.hasFinished == true){
        Time now = new Time(); //finds the current time
        now.setToNow(); 
        String lsNow = now.format("%m-%d-%Y %I:%M:%S");
        lsNow += " just Started\n";
        try {
            dumpToFile("StepsChanged", lsNow);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
 }

但是如果我把声明放在后面

if(temporaryCountHolder == false) 

语句,那么带有 hasFinished 的 if 语句将始终评估为假。我怎样才能得到它,以便当且仅当计时器完成时我才能记录时间?

4

2 回答 2

0

根据您的评论,您获得错误值的原因是因为您在计时器停止之前执行语句。

你可以像下面这样,

@Override
public void onFinish(){
        hasFinished = true;
        Time now = new Time(); //finds the current time
        now.setToNow(); 
        String lsNow = now.format("%m-%d-%Y %I:%M:%S");
        lsNow += " just Started\n";
        try {
            dumpToFile("StepsChanged", lsNow);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
}

要简单地记录时间,您可以将这些方法移至 countdowntimer 类的 onFinish 方法。我不知道dumpToFile它是否是另一个类的方法,您可以将其设为静态方法并使用它,甚至是一些合适的替代方法。希望这可以帮助。

于 2013-04-11T06:48:42.907 回答
0

您需要取消 OnFinsh 中的 CountDownTimer

    @Override
    public void onFinish() {
        Log.v(TAG, "On Finish");
        Intent intent = new Intent(TIME_OUT);
        intent.putExtra("dialog", "timeout");
        sendBroadcast(intent);
        countDownTimer.cancel();
    }
于 2016-05-10T06:59:29.613 回答