你能幫助我嗎? 我實現的執行和scheduledWithFixedDelay,但它確實只有一次.... 我希望做這個任務在重複的方式...Android重複任務不起作用
ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor();
executor.scheduleWithFixedDelay(new Runnable(){
public void run() {
updateList();
}
}, updateTime, updateTime, TimeUnit.MINUTES);
我在做什麼錯?
在此先感謝。
請注意,[''TimeUnit.MINUTES'不保證在Android上存在](http://stackoverflow.com/questions/3472423/android-java-util-concurrent-timeunit-convert-milliseconds-to-minutes) – 2014-01-31 16:34:31