I am using intent to display contact list. From contacts I want to get contact information like firstname, secondname, emailid, phonenumber. I want all the information in onActivityForResult() for selected contact.
Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI);
startActivityForResult(intent, 1);
This has been answered many times, please check these posts out:
How to read contacts on Android 2.0
get contact info from android contact picker
How to call Android contacts list?
Google Android Developer Documentations:
Source:
http://developer.android.com/training/contacts-provider/retrieve-names.html