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

跟風遠走 提交于 2019-12-20 01:55:19

问题


I am working on a widget application where I have to perform some task in every one minute. So, I am using AlarmManager to achieve this. But no matter whatever I set the interval time, its being repeated in every 5 seconds.

I am using AlarmManager like this:

 final AlarmManager alarm = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
        alarm.cancel(pendingIntent);
        long interval = 60000;
        alarm.setInexactRepeating(AlarmManager.ELAPSED_REALTIME, SystemClock.elapsedRealtime(), interval, pendingIntent);

Thanks in advance.


回答1:


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.




回答2:


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.




回答3:


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




回答4:


Try this

alarmManager.setRepeating(
    AlarmManager.ELAPSED_REALTIME_WAKEUP,
    SystemClock.elapsedRealtime(),
    60000, 
    pendingIntent
);


来源:https://stackoverflow.com/questions/43467229/android-alarm-manager-is-repeating-after-5-seconds-and-ignoring-interval-time

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