我有这个线程:
private class MyThread extends Thread{
public void run(){
try {
sleep(10000);
Utils.stopTimer();
} catch (InterruptedException e) {
Log.d(TAG, "interrupted");
}
}
}
然后我开始了线程。但是线程阻塞了主 UI 线程,导致它不响应用户交互。