应该在绑定视图中关闭光标吗?
public void bindView(View view, Context context, Cursor cursor) {
int num=cursor.getLong(0);
//cursor.close();
}
关闭适配器bindview中的游标是否正确?在什么情况下我应该这样做?或者也许我永远不应该这样做。 。 。
public void bindView(View view, Context context, Cursor cursor) {
int num=cursor.getLong(0);
//cursor.close();
}
is closing cursors in adapter bindview correct ? and in what conditions should I do that ? or maybe I should never do it . . .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,不是。如果用户滚动,CursorAdapter 需要 Cursor 显示更多行。您需要做的是在 onCreate 中创建 Cursor 并在 onDestroy 中关闭它。
或者只是创建一个 Cursor 并让 Activity 管理它:
如果您使用 startManagingCursor(),您的 Activity 将在 Cursor 被销毁时关闭它。
No it is not. The CursorAdapter needs the Cursor to display further rows if the user scrolls. What you need to do is create the Cursor in onCreate and close it in onDestroy.
Or just create a Cursor and let the Activity manage it:
If you use startManagingCursor() your Activity will close the Cursor when it gets destroyed.