在我的活动中,我有一个autocompletetextview,它从我的自定义适配器获取内容。我按照this example创建了适配器。
到目前为止,适配器还可以工作,但是我在泄漏和游标上遇到了很多错误,这些错误还没有最终确定。我的问题是:如何关闭runqueryonbackgroundthread中的db?
以下是我的方法:

@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;

但是我得到了Invalid statement in fillWindow()错误,autocompletetextview没有显示下拉列表。
下面是我如何在类中设置适配器的,顺便说一句,它不扩展活动,而是扩展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(),所以我手动关闭光标。但我还是得到了光标未定案的例外:
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)

关于如何解决这些错误有什么想法吗?谢谢!

最佳答案

首先,你关门太早了。当Cursor正在使用AutoCompleteCursorAdapter时,不能关闭它。我也不确定在打开数据库时是否可以安全地关闭它。
其次,我不知道你为什么说你“不能使用Cursor”,因为在你的情况下,这似乎是一个很好的答案。
如何在runqueryonbackgroundthread中关闭数据库?
您可以在startManagingCursor()中打开数据库并在onCreate()中关闭它。

08-06 17:30