[Solved] Launch Contacts Activity through Intent


You should add READ_CONTACT permission in AndroidManifest.

Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType(ContactsContract.Contacts.CONTENT_TYPE);
startActivityForResult(intent, 10011);

2

solved Launch Contacts Activity through Intent