如何使用关键字过滤 Android 中的联系人
我正在开发一个应用程序,该应用程序在调用意图后根据关键字返回联系人列表。关键字可以是任何内容,从姓名、电话号码、地址到公司名称。
我不确定如何实际将关键字值传递给将启动联系人列表的意图。有人可以建议如何实现这一目标吗?
我比较绝望。
谢谢。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.