4

I am working on android app in which I want to open phonebook on button click event. Will I have to use intent for that?

Thanks, Vishakha.

1 Answers1

4

Try something like this:

Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI);
startActivityForResult(intent, PICK_CONTACT);

To get more into this see Android – Open Contacts Activity and Return Chosen Contact

Ahmad Kayyali
  • 8,233
  • 13
  • 49
  • 83