How to filter a contact picker intent on the basis of account type
On applying a picker (implicit) intent, we can show the contacts list , with all the contacts present in the phone. For this we usually use below code : Intent contactPickerIntent = new Intent(Intent.ACTION_PICK, ContactsContract.CommonDataKinds.Phone.CONTENT_URI); startActivityForResult(contactPickerIntent, RESULT_PICK_CONTACT); But what should be done to filter the contacts displayed in the list as per the Account Types . For e.g- if I want to show only the contacts which are registered with whatsapp. What shall be done in this case scenario to show only the whats app registered contacts in