如何使用关键字过滤 Android 中的联系人

发布于 2025-01-03 22:51:52 字数 151 浏览 1 评论 0原文

我正在开发一个应用程序,该应用程序在调用意图后根据关键字返回联系人列表。关键字可以是任何内容,从姓名、电话号码、地址到公司名称。

我不确定如何实际将关键字值传递给将启动联系人列表的意图。有人可以建议如何实现这一目标吗?

我比较绝望。

谢谢。

I am working on an application that returns a list of contacts based on keyword after calling an intent. The Keyword can be anything from name to phone number to address to company name.

I am not sure how to actually pass the keyword value to the intent that will launch the contact list. Could anyone please advise on how to achieve this?

I am rather desperate.

Thanks.

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

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

发布评论

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

评论(1

久随 2025-01-10 22:51:52

使用 Intent.putExtra (String name, String value) 向您的活动传递过滤联系人列表所需的关键字,并在 SqlLite where 子句中使用它来进行过滤。

Use Intent.putExtra (String name, String value) to pass your activity the keyword you need to filter the contact list and use this in the SqlLite where clause in order to filter.

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