为什么 AlarmManager 有时无法在 5 分钟后执行,因为它应该执行?例如,在一次它可能不起作用,但在下一个时期它工作 2(或 3(次。甚至滞后 1 分钟。
API 17 (Android 4.2.1( - setRepeating 应该是精确的。
public void scheduleAlarm()
{
Intent intent = new Intent(getApplicationContext(), TestAlarmReceiver.class);
final PendingIntent pIntent = PendingIntent.getBroadcast(this, TestAlarmReceiver.REQUEST_CODE,
intent, PendingIntent.FLAG_UPDATE_CURRENT);
long firstMillis = System.currentTimeMillis();
AlarmManager alarm = (AlarmManager) this.getSystemService(Context.ALARM_SERVICE);
alarm.setRepeating(AlarmManager.RTC_WAKEUP, firstMillis, 5 * 60 * 1000, pIntent); // every 5 minutes
Log.i(TAG_LOG, "The alarm started");
}
原木:
<...>
17.03.2017 07:20:30
17.03.2017 07:25:30
17.03.2017 07:30:30
17.03.2017 07:40:25 <- this
17.03.2017 07:40:30 <- this
17.03.2017 07:45:30
17.03.2017 07:50:30
17.03.2017 07:55:30
17.03.2017 08:00:30
17.03.2017 08:10:25 <- this
17.03.2017 08:10:30 <- this
17.03.2017 08:15:30
17.03.2017 08:20:30
<...>
17.03.2017 16:50:30
17.03.2017 16:55:30
17.03.2017 17:01:10 <- this
17.03.2017 17:05:30
17.03.2017 17:10:30
17.03.2017 17:15:30
17.03.2017 17:21:08 <- this
17.03.2017 17:25:30
17.03.2017 17:40:29 <- this
17.03.2017 17:40:29 <- this
17.03.2017 17:40:30 <- this
17.03.2017 17:45:30
17.03.2017 17:51:09 <- this
17.03.2017 17:55:30
17.03.2017 18:00:50
<...>
setRepeating()
不应该按照你想要的方式工作。
setExact()
在确切的时间触发警报,但由于没有setExactRepeating()
方法,您需要使用 setExact()
,并在BroadcastReceiver
中再次调用 setExact()
函数。
没有简单的方法可以做到这一点,因为谷歌试图向您指出这对电池不利。如上所述使用setExact()
是精确重复的唯一选择。