Android - 显示特定联系人信息

发布于 2024-08-26 18:23:28 字数 445 浏览 4 评论 0原文

在我的应用程序中,当用户单击按钮时,我想打开联系人应用程序并显示特定的联系人信息。

目前我有这个:

Intent intent = new Intent(Intent.ACTION_VIEW, People.CONTENT_URI);
startActivity(intent);

这显示了联系人应用程序,其中显示了所有联系人。

但如何让它根据联系人姓名或号码只显示一个联系人呢?

该代码有效:(答案)

Uri contactUri = ContentUris.withAppendedId(People.CONTENT_URI, 23);

Intent intent = new Intent(Intent.ACTION_VIEW, contactUri);
startActivity(intent);

In my application when a user clicks on a button I want to open the contacts application and display a particular contacts information.

At the minute I have this:

Intent intent = new Intent(Intent.ACTION_VIEW, People.CONTENT_URI);
startActivity(intent);

This displays the contact application with all the contacts displayed.

But how do I get it to display just one contact according to the contacts name or number?

This Code works: (answer)

Uri contactUri = ContentUris.withAppendedId(People.CONTENT_URI, 23);

Intent intent = new Intent(Intent.ACTION_VIEW, contactUri);
startActivity(intent);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故事还在继续 2024-09-02 18:23:28

将联系人 ID 号附加到 URI 的末尾。

例如 content://contacts/people/615

或 People.CONTENT_URI + "/" + contactId

ID 号将来自您的原始联系人查询。

Append the contact ID number to the end of the URI.

For instance content://contacts/people/615

or People.CONTENT_URI + "/" + contactId

The ID number will come from your original contact query.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文