如何删除 Android 中的悬空光标?
如何删除 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您不再需要 Cursor 对象时调用它的
close()
(例如,使用它的活动的onDestroy()
)。这与关闭游标无关。
Call
close()
on the Cursor object when you no longer need it (e.g.,onDestroy()
of the activity using it).That has nothing to do with closing the cursors.