Android 自动完成文本视图过滤
我有一个AutoCompleteTextview,但默认过滤对我来说不好。
例如:字符串 "hum" 应该与 Hohum Plumbing、Humphrey Bogart 和 Robert Mitchum
匹配,但目前还没有发生。
目前,我正在传递 ArrayList 并创建适配器。现在我如何自定义过滤?
I have an AutoCompleteTextview but default filtering is not good for me.
eg: The string "hum" should match to Hohum Plumbing, Humphrey Bogart, and Robert Mitchum
, but currently, it is not happening.
Currently, I am passing ArrayList and creating adapter. Now how can I customize the filtering?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这种情况下,您必须为附加到
AutoCompleteTextView
适配器的过滤器创建自己的runQuery
实现。In that case, you have to make your own
runQuery
implementation for the filter attached to yourAutoCompleteTextView
's adapter.也许你应该看看这里
或创建您自己的自定义控件
此处
Maybe you should take a look at here
or create you own custom control
here