毎朝 5 時に更新サービスを実行する必要があるため、ユーザーが朝に携帯電話を手に取ったときにデータが更新されます。私がこれまでに持っているコードは -
Log.d(TAG, "setAutoRun");
AlarmManager alarmMgr = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
Intent intent = new Intent(this, RefreshIntentService.class);
PendingIntent pendingI = PendingIntent.getService(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
Calendar time = Calendar.getInstance();
time.setTimeInMillis(System.currentTimeMillis());
time.add(Calendar.SECOND, 60); // this was just to test out the alarm service
alarmMgr.set(AlarmManager.RTC, time.getTimeInMillis(), pendingI);
これを毎朝 5 時に実行するように変更するにはどうすればよいですか? X 分後に再び実行されるように間隔を設定できることはわかっていますが、ユーザーがそれを開かない場合、どうすれば午前 5 時に開始できますか。
ありがとうございました