this Intent opens the Contacts, containing entries with address information only:
Intent getContactIntent = new Intent(Intent.ACTION_PICK, ContactsContract.CommonDataKinds.StructuredPostal.CONTENT_URI);
Now I was trying to use this pattern to filter for contacts containing an eMail:
Intent getContactIntent = new Intent(Intent.ACTION_PICK, ContactsContract.CommonDataKinds.Email.CONTENT_URI);
But this excepts (no action_pick for intent or so)
How can I achieve that?