I want to give the user possibility to open Contacts app from my app, so he can edit them, export etc.
What I DON'T WANT is a contact picker where the user selects a contact. I need only to somehow open the Contacts app from my app.
How Can I do it ? Intent ?
The following snippet will do what you want .
Intent intent = new Intent(Intent.ACTION_VIEW, ContactsContract.Contacts.CONTENT_URI);
startActivity(intent);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With