私は現在、毎日指定された時間内にアラームを鳴らすアラームマネージャーを作成しようとしています。まず、ユーザーがその日にアラームを設定しているかどうかを確認します。
if ((User.getReminderTime(Home.this) > 0)
&& (dt.getDate() != today.getDate() || dt.getDay() != today
.getDay())) {
AppointmentManager.setFutureAppointmentCheck(this
.getApplicationContext());
User.setLongSetting(this, "futureappts", today.getTime());
}
次に、実際のアラームを翌日の12時から12時10分までに鳴るように設定します。
public static void setFutureAppointmentCheck(Context con) {
AlarmManager am = (AlarmManager) con
.getSystemService(Context.ALARM_SERVICE);
Date futureDate = new Date(new Date().getTime() + 86400000);
Random generator = new Random();
futureDate.setHours(0);
futureDate.setMinutes(generator.nextInt(10));
futureDate.setSeconds(0);
Intent intent = new Intent(con, FutureAppointmentReciever.class);
PendingIntent sender = PendingIntent.getBroadcast(con, 0, intent,
PendingIntent.FLAG_ONE_SHOT);
am.set(AlarmManager.RTC_WAKEUP, futureDate.getTime(), sender);
}
これを2分ごとにオフにするテスト環境をセットアップしましたが、正常に機能しているようですが、実際のデバイスに展開すると、受信者がアラームを受信していないようです。デバイスがスリープ状態になっていることが問題である可能性があると考えたため、電源マネージャーを追加しました。しかし、それでも機能しません。
PowerManager pm = (PowerManager) context
.getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = pm.newWakeLock(
PowerManager.PARTIAL_WAKE_LOCK, "keepAlive");
wl.acquire();
setFutureAppointments(context.getApplicationContext());
AppointmentManager.setFutureAppointmentCheck(context
.getApplicationContext());
User.setLongSetting(context.getApplicationContext(), "futureappts",
new Date().getTime());
wl.release();
誰かが私が露骨に間違っていることを見ていますか、それとも私はこれについて間違っていますか?ありとあらゆる助けに感謝します。