Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android open Contacts app (not choose a contact)

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 ?

like image 608
kjdkfjsdo8 Avatar asked Oct 30 '25 01:10

kjdkfjsdo8


1 Answers

The following snippet will do what you want .

    Intent intent = new Intent(Intent.ACTION_VIEW, ContactsContract.Contacts.CONTENT_URI);
    startActivity(intent);
like image 52
Mithun Sarker Shuvro Avatar answered Oct 31 '25 15:10

Mithun Sarker Shuvro



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!