gpt4 book ai didi

android - 我什么时候应该关闭我提供给 ListView 的光标

转载 作者:搜寻专家 更新时间:2023-11-01 08:17:03 26 4
gpt4 key购买 nike

我像这样向 ListActivity 提供游标:我的问题是完成后如何/何时关闭游标?

Cursor cursor = getContentResolver().query(uri, null, null, null, null);
if (cursor != null) {
mCursorAdapter = new CursorAdapter(this, cursor);
setListAdapter(mCursorAdapter);
}

谢谢。

最佳答案

onDestroy()。越早越好,如果您要特别早于此清除列表。或者,调用 startManagingCursor(cursor),Android 会在安全时为您关闭它。

关于android - 我什么时候应该关闭我提供给 ListView 的光标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3350015/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com