第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

我試圖每小時(shí)做一次通知,但想從數(shù)據(jù)庫(kù)中填充,我有工作代碼,但下一個(gè)通知最多不到一個(gè)小時(shí)

我試圖每小時(shí)做一次通知,但想從數(shù)據(jù)庫(kù)中填充,我有工作代碼,但下一個(gè)通知最多不到一個(gè)小時(shí)

長(zhǎng)風(fēng)秋雁 2022-09-01 17:38:00
我想制作一個(gè)通知應(yīng)用程序,該應(yīng)用程序?qū)⒏鶕?jù)我已完成正在通知的應(yīng)用程序的數(shù)據(jù)庫(kù)中的數(shù)據(jù)發(fā)出警報(bào),我希望它每一小時(shí)一次,但通知不超過另一個(gè)觸發(fā)前一個(gè)小時(shí)。這是代碼Runnable myRunnable = new Runnable(){ @Override public void run() {   while(true){     try {        runOnUiThread(new Runnable(){                        @Override       public void run() {       AsyncDataClass asyncRequestObject = new AsyncDataClass();       asyncRequestObject.execute(serverUrl, email, day, hourToPass);       }                    });                    counter++;                    Thread.sleep(3600000);                } catch (InterruptedException e) {                    // TODO Auto-generated catch block                    e.printStackTrace();                }            }        }    };Here is the trigger codePendingIntent pendingIntent = PendingIntent.getBroadcast(LoginActivity.this, 0, alarmIntent, 0);                AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);                alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 3600000, pendingIntent);正在執(zhí)行 AsyncTask 的 PostExcuteRunnable myRunnable = new Runnable(){    int counter = 0;    @Override    public void run() {        while(true){            try {                runOnUiThread(new Runnable(){                    @Override                    public void run() {                        AsyncDataClass asyncRequestObject = new AsyncDataClass();                        asyncRequestObject.execute(serverUrl, email, day, hourToPass);                    }                });                counter++;                Thread.sleep(3600000);            } catch (InterruptedException e) {                // TODO Auto-generated catch block                e.printStackTrace();            }        }    }};
查看完整描述

2 回答

?
狐的傳說

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超3個(gè)贊

您必須創(chuàng)建一個(gè) as :Handler


Handler handler = new Handler();

在你打電話的結(jié)尾:Runnable()handler.postDelayed(runnable, 1000*60*60);


工作示例可以是:


Handler handler = new Handler();

    Runnable runnable = new Runnable() {

        @Override

        public void run() {

           AsyncDataClass asyncRequestObject = new AsyncDataClass();

           asyncRequestObject.execute(serverUrl, email, day, hourToPass);

           //To repeat it every hour

           handler.postDelayed(runnable, 1000*60*60);


        }

    };

    handler.postDelayed(runnable, 1000*60*60); //call this when you want to start doing the work



查看完整回答
反對(duì) 回復(fù) 2022-09-01
?
開滿天機(jī)

TA貢獻(xiàn)1786條經(jīng)驗(yàn) 獲得超13個(gè)贊

我會(huì)考慮使用執(zhí)行器服務(wù),除非我誤解了您的要求。

將運(yùn)行對(duì)象提交給執(zhí)行程序?qū)⒃试S您每小時(shí)安排執(zhí)行,并且您將能夠保證執(zhí)行時(shí)間,而不管上一次執(zhí)行花費(fèi)了多長(zhǎng)時(shí)間,這對(duì)于您當(dāng)前的實(shí)現(xiàn)來說可能是一個(gè)問題。


查看完整回答
反對(duì) 回復(fù) 2022-09-01
  • 2 回答
  • 0 關(guān)注
  • 142 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)