在我的活动中,我有一个AutoCompleteTextView,它从我的自定义适配器获取其内容.我按照this example创建了适配器.
适配器到目前为止可以正常工作,但是我在泄漏和未完成的游标上遇到了很多错误.我的问题是:如何在runQueryOnBackgroundThread中关闭数据库?
这是我的方法:
@Override
public Cursor runQueryOnBackgroundThread(CharSequence constraint) {
if (getFilterQueryProvider() != null) {
return getFilterQueryProvider().runQuery(constraint);
}
StringBuilder buffer = null;
String[] args = null;
if (constraint != null) {
buffer = new StringBuilder();
buffer.append("UPPER (");
buffer.append(DbUtilities.KEY_SEARCH_TERM);
buffer.append(") GLOB ?");
args = new String[] { "*" + constraint.toString().toUpperCase() + "*" };
}
final DbUtilities favsDB = new DbUtilities(context);
return favsDB.getAllRecents(buffer == null ? null : buffer.toString(), args);
}
我尝试将其修改为:
final DbUtilities favsDB = new DbUtilities(context);
Cursor c = favsDB.getAllRecents(buffer == null ? null : buffer.toString(), args);
favsDB.close();
return c;
但是我在fillWindow()错误中收到了Invalid语句,并且AutoCompleteTextView不显示下拉列表.
这是我在类中设置适配器的方式,顺便说一句,它不扩展Activity而是扩展了RelativeView(因为我正在使用它来设置选项卡的内容):
AutoCompleteTextView searchTerm = (AutoCompleteTextView) findViewById(R.id.autocomp_search_what);
DbUtilities db = new DbUtilities(mActivity.getBaseContext());
Cursor c = db.getAllSearchTerms();
AutoCompleteCursorAdapter adapter = new AutoCompleteCursorAdapter(mActivity.getApplicationContext(),
R.layout.list_item_autocomplete_terms, c);
c.close();
searchTerm.setAdapter(adapter);
我无法使用startManagingCursor(),因此我手动关闭了光标.但是我仍然得到Cursor尚未最终确定的异常:
10-20 16:08:09.964: INFO/dalvikvm(23513): Uncaught exception thrown by finalizer (will be discarded):
10-20 16:08:09.974: INFO/dalvikvm(23513): Ljava/lang/IllegalStateException;: Finalizing cursor android.database.sqlite.SQLiteCursor@43d63338 on search_terms that has not been deactivated or closed
10-20 16:08:09.974: INFO/dalvikvm(23513): at android.database.sqlite.SQLiteCursor.finalize(SQLiteCursor.java:596)
10-20 16:08:09.974: INFO/dalvikvm(23513): at dalvik.system.NativeStart.run(Native Method)
关于如何解决这些错误的任何想法?谢谢!
解决方法:
首先,您关闭太早.当AutoCompleteCursorAdapter使用游标时,无法将其关闭.我也不确定在打开的Cursor上是否可以安全地关闭数据库.
其次,我不知道您为什么说“不能使用startManagingCursor()”,因为在您的情况下,这似乎是一个很好的答案.
how do I close the db in runQueryOnBackgroundThread?
您可以在onCreate()中打开数据库,然后在onDestroy()中关闭数据库.