私はこのスレッドを持っています:
private class MyThread extends Thread{
public void run(){
try {
sleep(10000);
Utils.stopTimer();
} catch (InterruptedException e) {
Log.d(TAG, "interrupted");
}
}
}
そして、スレッドを開始しました。ただし、スレッドがメインUIスレッドをブロックしているため、ユーザーの操作に応答しません。