My app had in intent-filter to respond when users click on a person's address in the contacts application.
In Android 1.5 I would get an intent with data like content://contacts/people/16/contact_methods/3 In order to retrive the address from the contact I would later I would do: Cursor c = getContentResolver().query(intentUri, ...); Get the column called "data" and take the address from there. That stopped working on later android releases. On 2.0 all I get is: content://com.android.contacts/data/4 And I do not know how to get the address form that. It fails when I query for it. Any suggestions? Thank you, Artak Kalantarian -- 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

