0

我正在学习使用计时器,并按照http://examples.javacodegeeks.com/android/core/os/handler/android-timer-example/中的示例进行操作。

我想以一种方式实现定时器将在用户按下按钮时启动并在用户的手离开时停止,所以我编码如下:

代码:

button_right.setOnTouchListener( new View.OnTouchListener() 
{
    @Override
    public boolean onTouch(View arg0, MotionEvent event) 
    {
        if(event.getAction()==MotionEvent.ACTION_DOWN )
        {
            startTime = SystemClock.uptimeMillis();
            customHandler.postDelayed(updateTimerThread, 0);



        if((event.getAction()==MotionEvent.ACTION_UP || event.getAction()==MotionEvent.ACTION_CANCEL))
        {
            timeSwapBuff += timeInMilliseconds;
            customHandler.removeCallbacks(updateTimerThread);
        }
        return false;
    }
});  



// setting timer
private Runnable updateTimerThread = new Runnable() 
{
    public void run() 
    {
        timeInMilliseconds = SystemClock.uptimeMillis() - startTime;
        updatedTime = timeSwapBuff + timeInMilliseconds;

        int secs = (int) (updatedTime / 1000);
        int mins = secs / 60;
        secs = secs % 60;
        int milliseconds = (int) (updatedTime % 1000);
        tv_timing.setText("" + mins + ":" + String.format("%02d", secs) + ":" + String.format("%03d", milliseconds));
        customHandler.postDelayed(this, 0);
    }
};      

问题:

一切正常,当用户按下按钮时计时器将启动,按住时继续运行,当手离开时停止。然而我发现当用户再次按下按钮时,计时器从上次停止的地方开始,而不是在计算时间之前重置为 0。

如果使用此代码,如何修改它以使计时器重置为 0,以便在再次按下按钮时重新计数?谢谢!!

4

3 回答 3

0

尝试在android中使用chronometer ...您可以使用它的功能来停止,启动,重新启动,将其设置为0

于 2013-10-06T17:29:07.677 回答
0

挖掘代码中的更多细节并通过网络进一步研究,我找到了答案并修改代码如下,它可以工作。

总而言之,感谢莫妮卡介绍天文台表,看起来不错!并感谢 Zyoo 让我在 ACTION_DOWN 下进行 removeCallbacks

            if(event.getAction()==MotionEvent.ACTION_DOWN )
            {
                if(startTime == 0L)
                {
                    startTime = SystemClock.uptimeMillis();
                    customHandler.removeCallbacks(updateTimerThread);
                    customHandler.postDelayed(updateTimerThread, 0);
                }

            if((event.getAction()==MotionEvent.ACTION_UP || event.getAction()==MotionEvent.ACTION_CANCEL))
            {
                // timeSwapBuff += timeInMilliseconds; //remove this! 
                customHandler.removeCallbacks(updateTimerThread);
                startTime = 0L;
            }
            return false;


private Runnable updateTimerThread = new Runnable() 
{
    public void run() 
    {
        timeInMilliseconds = SystemClock.uptimeMillis() - startTime;
        //updatedTime = timeSwapBuff + timeInMilliseconds;  //remove this!! else starting from where it stops last time!

        int secs = (int) (timeInMilliseconds / 1000);
        int mins = secs / 60;
        secs = secs % 60;
        int milliseconds = (int) (timeInMilliseconds % 1000);
        tv_timing.setText("" + mins + ":" + String.format("%02d", secs) + ":" + String.format("%03d", milliseconds));
        customHandler.postDelayed(this, 0);
    }
};
于 2013-10-06T17:46:14.127 回答
0

如果您的计时器不需要毫秒,请仅使用 Chronometer。

重置计时器的另一个选项是添加以下 1 行:timeSwapBuff = 0L;. 它比删除 2 个单独的更简单。

onClick在开始按钮的事件中进行此更改。这会将时间缓冲区重置为 0,然后将其添加回startTime(也是 0)并强制计时器完全重新开始。

尝试:

public void onClick(View view) {
    timeSwapBuff = 0L;
    startTime = SystemClock.uptimeMillis();
    customHandler.postDelayed(updateTimerThread, 0);
}
于 2016-04-24T07:31:17.740 回答