Android 计时器更新文本视图 (UI)

2022-08-31 20:51:30

我正在使用计时器创建秒表。计时器的工作原理是递增整数值。然后,我想通过不断更新文本视图在活动中显示此值。

下面是我尝试更新活动的文本视图的服务中的代码:

protected static void startTimer() {
    isTimerRunning = true; 
    timer.scheduleAtFixedRate(new TimerTask() {
        public void run() {
            elapsedTime += 1; //increase every sec
            StopWatch.time.setText(formatIntoHHMMSS(elapsedTime)); //this is the textview
        }
    }, 0, 1000);
}

我收到了有关在错误线程中更新UI的某种错误。

如何调整代码以完成不断更新文本视图的任务?


答案 1
protected static void startTimer() {
    isTimerRunning = true; 
    timer.scheduleAtFixedRate(new TimerTask() {
        public void run() {
            elapsedTime += 1; //increase every sec
            mHandler.obtainMessage(1).sendToTarget();
        }
    }, 0, 1000);
}

public Handler mHandler = new Handler() {
    public void handleMessage(Message msg) {
        StopWatch.time.setText(formatIntoHHMMSS(elapsedTime)); //this is the textview
    }
};

上面的代码将起作用...

注意:必须在主线程中创建处理程序,以便您可以修改 UI 内容。


答案 2

应改为使用每 X 秒更新一次 UI。这是另一个示例的问题:重复具有时间延迟的任务?Handler

你的方法不起作用,因为你正在尝试从非 UI 线程更新 UI。这是不允许的。