Implicit intent for contact list

I want to select a group (contact group). I found the code to open Contacts, but was not found for the group.

Intent intentContact = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI);
startActivity(intentContact);

Does anyone know how to implicitly open the next activity?

enter image description here

I did googling but couldn't find any more solution.

Your help will be appreciated.

Thanks and respect,

Pratik

+4
source share
1 answer

There is currently no way to do this.

+3
source

Source: https://habr.com/ru/post/1548641/


All Articles