如何删除 Android 中的悬空光标?

发布于 2024-12-18 11:36:33 字数 192 浏览 3 评论 0原文

如何删除 Android 中的悬空光标?每当我的游标工作完成时,我就会关闭数据库。

我想要这个,因为我遇到了与 Google 问题跟踪器问题 36921069 中显示的相同错误。

How to remove dangling cursors in Android? I am closing the database whenever my work with cursors is completed.

I want this as I am getting the same error as showed in Google Issue Tracker issue 36921069.

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

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

发布评论

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

评论(1

故事灯 2024-12-25 11:36:33

谁能告诉我如何删除悬空光标

当您不再需要 Cursor 对象时调用它的 close() (例如,使用它的活动的 onDestroy() )。

每当我使用游标完成工作时,我都会关闭数据库。

这与关闭游标无关。

Can anyone tell me how to remove dangling cursors

Call close() on the Cursor object when you no longer need it (e.g., onDestroy() of the activity using it).

I am Closing the Database whenever my work is completed with cursors.

That has nothing to do with closing the cursors.

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