Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
share|improve this question
So what do u want??????????? – Shahzad Imam Mar 10 '12 at 6:13

1 Answer

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?

Good Luck!

share|improve this answer
1  
Please follow all the sites – Shahzad Imam Mar 10 '12 at 6:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.