问题
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