On Mar 24, 7:48 pm, arnoldl <[email protected]> wrote: > in the eclipse debug window i can see it has extra's , but i can''t > find a list of those extra's. > I also can't find a function to get all extra's into a human readable > format.
I believe you need to do a bit more work than that. Intent.getExtras() will return the Bundle of all extras. Bundle.keySet() will return an array of all the keys for data in that bundle. >From there, you can request each extra individually, using its key. -- 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 To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

