julius wrote: > I have a notification which is being created with a PendingIntent > setup with some extras in the Intent. > > After the first notification is created, all subsequent notifications > have the same values in their extras as the first, even though the > notification and the extras are being updated.
You need to use FLAG_UPDATE_CURRENT or FLAG_CANCEL_CURRENT or something to update the extras in an existing PendingIntent. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 2.0 Available! -- 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

