17
私のプログラムにはタイマーが必要です。私はそれを書いて、エミュレータのプログラム(Android 1.5/2.2)でPC上で正常に動作します。しかし、それは実際のデバイス(Android 1.5)では動作しません。私は間違って何をしていますか?Androidのタイマーとタイマータスク
TimerTask task = new TimerTask() {
public void run() {
if (condition) {
myFunc();
} else {
this.cancel();
}
}
};
Timer timer = new Timer();
timer.schedule(task, 500, 85);
[Android - TimerとTimerTaskでタスクを制御する]の複製が可能です(http://stackoverflow.com/questions/2161750/android-controlling-a-task-with-timer-and-timertask) –
通過するこの[アンドロイド制御タスクとタイマーとタイムアタック](http://stackoverflow.com/questions/2161750/android-controlling-a-task-with-timer-and-timertask) – Rasel