Intent URI to go to your favorite contacts

Is there an Intent URI that sends you your favorite phone contacts?

Like content: // contacts / people / sends you to all your contacts and tel: sends you to your number.

EDIT

And is there a way to enter your call log?

+3
source share
1 answer

Favorites:

// "com.android.contacts.action.LIST_STARRED"
Intent intent = new Intent(Contacts.Intents.UI.LIST_STARRED_ACTION);
startActivity(intent);

Call Log:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("vnd.android.cursor.dir/calls");
startActivity(intent);
+5
source

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


All Articles