如何刷新cursorAdapter,特别是在删除列表中的最后一项时?

发布于 2024-11-06 07:49:04 字数 1149 浏览 0 评论 0原文

如何刷新cursorAdapter,特别是在删除列表中的最后一项时?


场景:

工作:

  • 编辑列表视图行,确定
  • 添加列表视图行,确定
  • 删除列表视图行(逐一),直到剩下一个,确定

问题:

  • 删除最后一行/项目,失败; 您需要先关闭您的活动,然后再次打开它以刷新。

我正在使用游标适配器,并且我想在删除列表视图的最后一行/项目时刷新其列表。我刷新适配器的方法是将cursorAdapter 的新实例分配给我的Listview(就好像一次又一次地执行此操作)。

代码:

listview.setAdapter(new ImmunizationListCursorAdapter(
                    this,// current activity
                    R.layout.imm_list_row,// layout for each row
                    immunizationCursor,// the data
                    // Pass in the cursor to bind to.
                    // Array of cursor columns to bind to.
                    new String[] { ImmunizationModel.IM_COL_VACNAME,
                            ImmunizationModel.IM_COL_DATE },
                            // Parallel array of which template objects to bind to
                            // those
                            // columns.
                            new int[] { R.id.text_vaccine_name,
                            R.id.text_date_description }));

就在那里。

谁能帮助我? :((

How to refresh cursorAdapter especially when deleting last item in a list?


scenario:

working:

  • editing list-view row, OK
  • adding list-view row, OK
  • deleting list-view row(one by one), until one is left, OK

problem:

  • deleting the last row/item, FAILED;
    you need to close first your activity and open it again for it to refresh.

I am using a cursor adapter, and I want to refresh its list when deleting the last row/item of a list view. my method for refreshing an adapter is to assign a new instance of cursorAdapter to my Listview(as if, doing this again and again).

code:

listview.setAdapter(new ImmunizationListCursorAdapter(
                    this,// current activity
                    R.layout.imm_list_row,// layout for each row
                    immunizationCursor,// the data
                    // Pass in the cursor to bind to.
                    // Array of cursor columns to bind to.
                    new String[] { ImmunizationModel.IM_COL_VACNAME,
                            ImmunizationModel.IM_COL_DATE },
                            // Parallel array of which template objects to bind to
                            // those
                            // columns.
                            new int[] { R.id.text_vaccine_name,
                            R.id.text_date_description }));

there it is.

any one who can help me? :((

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

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

发布评论

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

评论(1

多孤肩上扛 2024-11-13 07:49:04

您所需要做的就是在每次修改数据集后调用productCursor.requery()

requery() 自动触发查询的执行(以便检索新数据),并通知 ListView(由适配器)它必须刷新自身。

顺便说一句,直到不久前我还在使用相同的错误方法来分配 CursorAdapter 的新实例......

All you need to do is to call productCursor.requery() after each modification to the dataset.

requery() automatically triggers execution of your query (in order to retrieve the new data) plus notification to the ListView (by the adapter) that it has to refresh itself.

BTW, until not so long ago I was using the same wrong method of assign a new instance of CursorAdapter...

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