我在android中的timerTask有问题我有这样的代码:
timer = new Timer();
timer.schedule(new TimerTask() {
public void run() {
countInt = countInt + 1;
textview1.setText(countInt);
}
}, 1000);
每次计时器任务启动时,我的应用程序都会崩溃,因为我正在访问 textview 并且它在另一个线程中,对吗?
如何解决这个问题?