プログラムにタイマーが必要です。私はそれを書きました、そしてそれはエミュレータープログラム(Android1.5/2.2)のPCでうまく働きます。ただし、実際のデバイス(Android 1.5)では機能しません。私は何が間違っているのですか?
TimerTask task = new TimerTask() {
public void run() {
if (condition) {
myFunc();
} else {
this.cancel();
}
}
};
Timer timer = new Timer();
timer.schedule(task, 500, 85);
タイマータスクではなく、cancel()タイマーを使用する必要があります。