[android-developers] Re: Multiple Notifications - PendingIntents with different data?

2010-05-11 Thread Nathan
I've done it successfully by using setData(Uri) and making sure Intent.FILL_IN_DATA is set. I'm not sure why it won't see the intent as unique when it differs by Extra Data only, but at least this works. Nathan -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: Multiple Notifications - PendingIntents with different data?

2010-05-11 Thread skink
Nathan wrote: I've done it successfully by using setData(Uri) and making sure Intent.FILL_IN_DATA is set. I'm not sure why it won't see the intent as unique when it differs by Extra Data only, but at least this works. Nathan it's enough to use unique requestCode when calling getActivity

[android-developers] Re: Multiple Notifications - PendingIntents with different data?

2010-05-11 Thread Nathan
On May 11, 11:33 am, skink psk...@gmail.com wrote: Nathan wrote: I've done it successfully by using setData(Uri) and making sure Intent.FILL_IN_DATA is set. I'm not sure why it won't see the intent as unique when it differs by Extra Data only, but at least this works. Nathan it's