Android Alarm manager is repeating after 5 seconds and ignoring interval time

蹲街弑〆低调 提交于 2019-12-01 22:13:52
FAЯAƸ

AlarmManager.ELAPSED_REALTIME is used to trigger the alarm since system boot time. Whereas AlarmManager.RTC uses UTC time.

 alarm.setInexactRepeating(AlarmManager.ELAPSED_REALTIME, SystemClock.elapsedRealtime(), interval, pendingIntent);

This will start running after system boots and repeats at the specified interval.

alarm.setInexactRepeating(AlarmManager.RTC, calendar.getTimeInMillis(), interval, pendingIntent);

This will start running from now and repeats at the specified interval.

To solve the problem, I suggest using AlarmManager.RTC. In case you want to start the alarm after 1 minute and then repeat, then pass the second param like this:

calendar.getTimeInMillis() + interval

Also check out the android documentation and this answer for more explanation in Alarms.

In my device (Nexus5 cm13), it can work well using below code :

    private void doWork() {
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
            new Intent(this, SecondActivity.class), 0);
        final AlarmManager alarm = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
        alarm.cancel(pendingIntent);
        long interval = 60000;
        alarm.setInexactRepeating(AlarmManager.ELAPSED_REALTIME, SystemClock.elapsedRealtime(),
            interval, pendingIntent);
   }

So I don't know it clearly, and you can try "setRepeating" for testing.

i had the same issue, and i solve it by removing the

android:exported="true"

from my receiver in the Manifest, because this attribut make your receiver to receive messages from sources outside its application, check this link android receiver

Rajesh Nasit

Try this

alarmManager.setRepeating(
    AlarmManager.ELAPSED_REALTIME_WAKEUP,
    SystemClock.elapsedRealtime(),
    60000, 
    pendingIntent
);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!