To select a particular contact from the contacts list you can do the following
i= new Intent(Intent.ACTION_PICK,People.CONTENT_URI); startActivityForResult(i,PICK_CONTACT_FROM_LIST); The details abt the selection can be received in the onActivityResult() --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

