开发者

Intent URI to go to favorite contacts

开发者 https://www.devze.com 2023-01-04 13:27 出处:网络
Is there an Intent URI that sends you to your phones favorite contacts? Just like content:开发者_运维问答//contacts/people/ sends you to all your contacts and tel: sends you to your dialer.

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

Just like content:开发者_运维问答//contacts/people/ sends you to all your contacts and tel: sends you to your dialer.

EDIT

And is there also a way to go to your call log?


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);
0

精彩评论

暂无评论...
验证码 换一张
取 消