如何在Android中搜索ListView(联系人样式)
我对我正在构建的应用程序有疑问。我定义了一个自定义列表视图。它由数据库数据支持。
我希望我可以按搜索按钮,然后就会出现搜索(与联系人列表中的搜索方式相同),但我不知道如何处理。我非常喜欢联系人中的搜索类型,因为它在打字时会发生变化。
我很乐意接受任何建议。
非常感谢!
I have a question regarding application I am building. I have a custom listview defined. It is backed with the DB data.
I want that I could press search button and that search would appear (the same way as it is done on contacts list), but I have no idea how to handle that. I like search type in contacts a lot because it is changing while typing.
I would be pleased with any advice.
Thank you a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过两个步骤来完成此操作:
构建可过滤列表 -
如何在 Android 上动态更新 ListView
并创建搜索界面 。
You can do that in two steps:
Build a filterable list -
How to dynamically update a ListView on Android
And create a search interface.