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);
1 Answer