如何更改ListView中单击时的图标?

发布于 2024-11-14 06:07:21 字数 441 浏览 1 评论 0原文

我的 ListView 链接到数据库(使用 SimpleCursorAdapter)。

当用户单击该行以更改图标时,我该怎么办? 我尝试过:

  1. 更新数据库值;
  2. 手动更改图标;
  3. 称呼 myCursor.notifyDataSetChanged();

它不起作用 - 没有任何改变。 如果我不调用 myCursor.notifyDataSetChanged();,则图标会更改。但是一旦我移动ListView,它就消失了。 如果我再次将 myCursorListView 关联,那么它可以工作,但是整个 ListView 被重新绘制,列表滚动到顶部,这是不正确的行为。

我应该怎么办?

My ListView is linked to the database (with SimpleCursorAdapter).

What should I do once user clicked on the row to change the icon?
I've tried to:

  1. update database value;
  2. change icon manually;
  3. call
    myCursor.notifyDataSetChanged();

It doesn't work - nothing is changed.
If I don't call myCursor.notifyDataSetChanged();, then icon is changed. But once I move ListView, it disappears.
If I associate myCursor with ListView again, then it works, but the whole ListView is re-drawn, list is scrolled to the top, which is incorrect behaviour.

What should I do?

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

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

发布评论

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

评论(1

一场春暖 2024-11-21 06:07:21

好的,我找到了答案 - 我应该重新查询光标。

OK, I've found the answer - I should requery the cursor.

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