My app is setting an alarm:
开发者_如何学GoAlarmManager mgr = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
mgr.setRepeating(
AlarmManager.RTC_WAKEUP,
firstRun,
interval,
makePendingIntent(context));
Works fine. If I go into system settings -> applications, and force-stop my app, it seems that this also has the effect of canceling any alarms I had scheduled. Is this true? If so, I'm in a weird situation where my last-known settings are that the user had in fact set the alarm, but the system may have canceled behind my back, so I'm now showing the user the wrong status as to whether the alarm is set or not.
Thanks
Yes, it's true. All you can do, as far as I know, is to make your status right. To check if your alarms are still there you have to take 2 steps:
- Atempt to create your
PendingIntent
withFLAG_NO_CREATE
- the functioncheckPendingIntent
will be exactly likemakePendingIntent
except for this flag inPendingIntent.getBroadcast
and a check of the result - if the alarm has been canceled in an ordinary way (by yourself, of course if you calledcancel()
for yourPendingIntent
s) or if your app crashed without Force Stop (i.e. with an uncaught exception),PendingIntent.getBroadcast
will return null. If the PendingIntent exists your alarm might be set. To check it you have to dump system information about all alarms and search for yours there. To dump the info you have to call
String collectAlarmsInfo() { StringBuilder result = new StringBuilder(); try { Process process = Runtime.getRuntime().exec("dumpsys alarm"); BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream())); String line; while ((line = bufferedReader.readLine()) != null) { result.append(line); result.append("\n"); } } catch (IOException e) { Log.e(TAG, "Could not retrieve data", e); } return result.toString(); }
To use dumpsys you need to have user-permission DUMP. When you have the dump you can identify you alarms in it by you package name, so the check will be
boolean alarmIsSet = collectAlarmsInfo().contains(<your package name>);
精彩评论