Timer and TimerTask in Android

Scit picture Scit · Jun 25, 2011 · Viewed 22.8k times · Source

I need a timer for my program. I have written it and it works fine on PC in emulalator program (Android 1.5/2.2). But it doesn't work on the real device (Android 1.5). What am I doing wrong?

TimerTask task = new TimerTask() {
            public void run() {
                if (condition) {
                    myFunc();
                } else {
                    this.cancel();
                }
            }
        };
        Timer timer = new Timer();
        timer.schedule(task, 500, 85);

Answer

Jarek Potiuk picture Jarek Potiuk · Jun 25, 2011

You need to cancel() timer not the timer task.