AutoCompleteTextView、ArrayAdapter 和 notificationDataSetChanged()
我正在使用带有 ArrayAdapter 的 AutoCompleteTextView ,它的工作原理与预期的一样。
问题是,我必须使用自动完成值更改数组。调用notifyDataSetChanged() 没有帮助。没有显示任何变化。
你知道有什么办法可以解决这个问题吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要修改
ArrayList
并调用notifyDataSetChanged()
,因为它不会对ArrayAdapters产生任何影响(实现似乎已损坏)。直接在
clear()
、add()
、insert()
和remove()
>ArrayAdapter 而不是ArrayList
上的那些方法。Do not modify the
ArrayList
and callnotifyDataSetChanged()
as it will have no effect on ArrayAdapters (implementation seems broken).Use
clear()
,add()
,insert()
, andremove()
directly on yourArrayAdapter
instead of those methods on yourArrayList
.您需要向问题添加更多详细信息,但根据对您问题的猜测,我会说实施中存在一些问题。
notifyDataSetChanged()
通知视图重新加载数据。如果 ArrayAdapter 中的数据设置方法引用未更改的数据实体,则notifyDataSetChanged()
将不起作用。扩展 ArrayAdapter 的自定义适配器实现通常具有一个内部数据结构,该结构是适配器的数据源,并且包含您需要的自动完成值。
You need to add more details to the question but based on a guesstimate of you problem, I would say that there is some problem in the implementation.
notifyDataSetChanged()
informs the view to reload the data. If the data set up methods in the ArrayAdapter reference an unchanged data entity,notifyDataSetChanged()
will have not effect.A custom adapter implementation that extends ArrayAdapter will generally have an internal data structure that is the source of data for the adapter and which will contain the AutoComplete values you require.