Solved while writing this question, but posting in case it helps anyone:
I\'m setting multiple alarms like this, with different values of id
:
The solution for your problem is use Intent.FLAG_ACTIVITY_NEW_TASK
p = PendingIntent.getBroadcast(context, 0, i, Intent.FLAG_ACTIVITY_NEW_TASK);
You could also use the flag PendingIntent.FLAG_UPDATE_CURRENT
PendingIntent p = PendingIntent.getBroadcast(context, 0, i, PendingIntent.FLAG_UPDATE_CURRENT);
this should the work too
The documentation for PendingIntent.getBroadcast()
says:
Returns
Returns an existing or new PendingIntent matching the given parameters.
The problem is that two Intents differing only in extras seem to match for this purpose. So getBroadcast()
will return some random old PendingIntent (with a different EXTRA_ID
) instead of a new one around the Intent I just created. The fix is to supply a data Uri and make it differ with the id, like this:
Intent i = new Intent(MyReceiver.ACTION_ALARM, Uri.parse("timer:"+id));
You can then retrieve the id number using:
Long.parseLong(intent.getData().getSchemeSpecificPart());
...or of course supply the extra as well and use that.