Yes, that is good to know, thank you! I am going to try using the following to make the intent (and hence the pending intent) unique:
private static AtomicInteger _intentID = new AtomicInteger(); ... Intent intent = new Intent(_context, AlarmNotificationActivity.class); intent.setData(Uri.parse(Integer.toString(_intentID.getAndIncrement ()))); --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

