如何使重复报警即使设备处于Doze模式也能工作



我四处搜索,但没有找到解决方案。我的应用程序需要在用户决定的不同时间显示每日通知,但警报管理器工作不正常。如果我将时间设置为接下来的几分钟,它将显示通知,但大多数时候当我不使用设备时,它不工作。这就是我一直试图设置的重复警报。

Intent intent = new Intent(Reminder.this, AlarmReceiverDaily.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(Reminder.this, 100, intent, PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager alarmManager = (AlarmManager) Reminder.this.getSystemService(ALARM_SERVICE);
alarmManager.setInexactRepeating(AlarmManager.RTC_WAKEUP, targetCal.getTimeInMillis(), 24 * 60 * 60 * 1000, pendingIntent);

即使我的设备处于Doze模式,我如何通过以下代码设置重复警报?

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M)
alarmManager.setAlarmClock(new AlarmManager.AlarmClockInfo(targetCal.getTimeInMillis(),pendingIntent),pendingIntent);
else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
alarmManager.setExact(AlarmManager.RTC, targetCal.getTimeInMillis(), pendingIntent);
else
alarmManager.set(AlarmManager.RTC, targetCal.getTimeInMillis(), pendingIntent);

如果我不能将setAlarmClock((用于重复警报,那么你更喜欢什么解决方案来制作重复警报,它必须工作。

您必须使用:

if( Build.VERSION.SDK_INT >= 23 ){
alarmManager.setExactAndAllowWhileIdle( ... );
}

相关内容

  • 没有找到相关文章

最新更新