我需要啓動後臺任務。任務調用異步HTTP請求,如果條件有效,則顯示警報。Android後臺任務
我實現它,但我收到此錯誤:
java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
這是我的Java代碼:
Timer timer = new Timer();
timer.schedule(new RequestScheduledTask(), intervalTask);
class RequestScheduledTask extends TimerTask {
@Override
public void run() {
myCall();
}
}
你能幫助我嗎?
感謝
盧卡
做了我的答案更新 –