Android - 显示特定联系人信息
在我的应用程序中,当用户单击按钮时,我想打开联系人应用程序并显示特定的联系人信息。
目前我有这个:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将联系人 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.