意图URI去常用联系人 [英] Intent URI to go to favorite contacts

查看:106
本文介绍了意图URI去常用联系人的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有向您发送到您的手机常用联系人的意图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);

这篇关于意图URI去常用联系人的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆