Intent for contacts with phone number

android, android-contacts, android-intent, contacts

Solution

Intent intent = new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI);
intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_TYPE);
startActivityForResult(intent, 1);

Problem

Please, is it possible to pick from contacts only with phone number/s using intent and default contacts app? Maybe some modification of this (shows selection from all contacts): ``` Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); startActivityForResult(intent, CONTACT_PICKER_ID); ```

Original source