Android 维护 ListView 中所选项目的位置

发布于 2024-12-15 05:13:43 字数 425 浏览 1 评论 0原文

我有一个带有复选框的项目列表视图。

我有一个自定义 CursorAdapter,如果其 get View 方法中的字段值为“1”,则会检查复选框。

当我单击列表视图中的列表项时,它会选中复选框并将字段更新为“1”。我遇到的问题是,当我在自定义适配器上调用 ChangeCursor 方法时,它会重新加载所有内容并指向第一个项目,而不是我刚刚单击的项目。

在changeCursor方法中,我有以下内容:

    public void changeCursor(Cursor cursor) {
    super.changeCursor(cursor);
    init(cursor);
    notifyDataSetChanged();
}

有没有办法保持位置或解决方法来重新加载光标而不使其跳转到第一项?

I have a ListView of items with checkboxes.

I have a custom CursorAdapter that checks the checkboxes if the the field value is "1" in it's get View method.

When I click on the list item in the listview, it checks the checkbox and updates the field to "1". The problem I have is when I call the changecursor method on my custom adapter, it reloads everything and points to the first item instead of the item I just clicked on.

In the changeCursor method I have the following:

    public void changeCursor(Cursor cursor) {
    super.changeCursor(cursor);
    init(cursor);
    notifyDataSetChanged();
}

Is there a way to maintain the position or a workaround to reload the cursor without making it jump to the first item?

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

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

发布评论

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

评论(1

白鸥掠海 2024-12-22 05:13:43

您基本上需要一些数据结构来跟踪检查的项目。您可以在自定义适配器中使用布尔数组。

有关更多信息,请参阅此链接带有复选框问题的自定义列表视图

带有复选框的列表视图(

如果您正在寻找)例如尝试这个 http://appfulcrum.com/?p=281 教程它使用共享首选项解决了列表视图中的复选框问题。

谢谢

You basically need some data structure to keep track of checked items. you can use boolean array in your custom adapter.

for more info refer this link Custom listview with checkbox problem

listview with checkbox

if you are looking for an example try this http://appfulcrum.com/?p=281 tutorial which solves the checkbox problem in listview using shared preferences.

Thanks

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