implicit intent for contact groups list

android, android-contacts, android-implicit-intent, android-intent

Solution

There is currently no way to do this .

Problem

I want to pick group (Contact Group). I found code to open Contacts Activity but didn't found for Group. ``` Intent intentContact = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); startActivity(intentContact); ``` Is there anyone know how to open following activity implicitly? I have done googling but no found more solution. Your help would be appreciated. Thanks & Regards, Pratik

Original source