Intent URI转到最喜欢的联系人

时间:2010-06-25 07:00:57

标签: android android-intent

是否有一个Intent URI会将您发送给您手机最喜欢的联系人?

就像 content:// contacts / people / 将您发送给所有联系人, tel:将您发送到您的拨号器。

修改

还有办法转到你的通话记录吗?

1 个答案:

答案 0 :(得分:6)

最爱:

// "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);