意图URI去常用联系人意图、联系人、常用、URI

2023-09-06 13:58:52 作者:梦醒之后!

有没有向您发送到您的手机常用联系人的意图URI?

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.

修改

和有也是一种方式去你的通话记录?

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

推荐答案

我的最爱:

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

通话记录:

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