ExpandableListView、CursorTreeAdapter 和游标管理

发布于 2024-11-27 20:10:18 字数 727 浏览 1 评论 0原文

尝试使用 ExpandableListView 和 CursorTreeAdapter。这里引用 Android 手册:

受保护的抽象游标 getChildrenCursor (游标组游标) ... 您有责任在整个 Activity 生命周期中管理此 Cursor。在某些情况下,适配器会自行停用游标,但情况并非总是如此,因此请确保正确管理游标。

好吧,我在Google上找到了一些示例并编写了以下代码:

@Override
protected Cursor getChildrenCursor( Cursor groupCursor ) {
    int groupID = groupCursor.getInt( groupIDColumn );
    Cursor c = dbAdapter.getHostsCursor( "where expression", groupID );
    startManagingCursor( c );
    return c;
}

此代码有效,但 ExpandableListView 在每次单击组时都请求新光标以展开它。新游标被创建并添加到活动的托管游标列表中。

但是旧游标会发生什么情况呢?如果我负责根据 Google 手册管理游标,我可以在哪里关闭旧的、未使用的游标,调用 stopManagingCursor() ?如果有人点击展开和折叠组,应用程序会因堆栈溢出或其他系统资源泄漏而崩溃的速度有多快?

请指出正确的方向。

Trying to use ExpandableListView and CursorTreeAdapter. Here th quote from Android manual:

protected abstract Cursor getChildrenCursor (Cursor groupCursor)
...
It is your responsibility to manage this Cursor through the Activity lifecycle. In some situations, the adapter will deactivate the Cursor on its own, but this will not always be the case, so please ensure the Cursor is properly managed.

Ok, I find with Google some examples and wrote the following code:

@Override
protected Cursor getChildrenCursor( Cursor groupCursor ) {
    int groupID = groupCursor.getInt( groupIDColumn );
    Cursor c = dbAdapter.getHostsCursor( "where expression", groupID );
    startManagingCursor( c );
    return c;
}

This code works, but ExpandableListView requests new cursor on every click on a group to expand it. New cursors are created and added to Activity's list of managed cursors.

But what happens to the old cursors? Where I can close old, unused cursor, call stopManagingCursor(), if I'm responsible to manage cursors according to Google manual? If someone will be click to expand and collapse groups, how quickly app will crashed with stack overflow or another leak of system resources?

Please point me to the right direction.

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

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

发布评论

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

评论(1

小忆控 2024-12-04 20:10:18

考虑这两种选择:


  1. getChildrenCursor() 返回一个不会长久存在的游标。

    UI 被更新,然后光标被释放。

  2. <块引用>

    每个组都有一个光标。

    没有优化的空间。


选择 1 可能是正确的

Consider these two alternatives:


  1. getChildrenCursor() returns a cursor that will not live long.

    The UI is updated and then the cursor is disposed.

  2. Each Group has a cursor.

    There is no room for optimization.


choice 1 is probably true

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