我发布了一个关于如何在计时器任务中更改 UI 元素的问题(此处),现在很好。
但是当我有这样的代码时:
countInt = 0;
timer = new Timer();
timer.schedule(new TimerTask() {
public void run() {
countInt = countInt + 1;
}
}, 1000);
counterInt var 保存在此代码所在的活动中。
如何在不崩溃的情况下更改此值?