AutoCompleteTextView、ArrayAdapter 和 notificationDataSetChanged()

发布于 2024-10-11 09:50:27 字数 159 浏览 8 评论 0 原文

我正在使用带有 ArrayAdapter 的 AutoCompleteTextView ,它的工作原理与预期的一样。

问题是,我必须使用自动完成值更改数组。调用notifyDataSetChanged() 没有帮助。没有显示任何变化。

你知道有什么办法可以解决这个问题吗?

I'm using an AutoCompleteTextView with an ArrayAdapter which works like supposed.

The problem is, that I have to change the Array with the Autocomplete-Values. Calling notifyDataSetChanged() doesn't help. No changes are shown.

Do you know something to get around this problem?

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

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

发布评论

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

评论(2

懒猫 2024-10-18 09:50:27

不要修改ArrayList并调用notifyDataSetChanged(),因为它不会对ArrayAdapters产生任何影响(实现似乎已损坏)。

直接在 clear()add()insert()remove() >ArrayAdapter 而不是 ArrayList 上的那些方法。

Do not modify the ArrayList and call notifyDataSetChanged() as it will have no effect on ArrayAdapters (implementation seems broken).

Use clear(), add(), insert(), and remove() directly on your ArrayAdapter instead of those methods on your ArrayList.

风轻花落早 2024-10-18 09:50:27

您需要向问题添加更多详细信息,但根据对您问题的猜测,我会说实施中存在一些问题。
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.

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