在我的活動,我有一個AutoCompleteTextView從我的自定義適配器獲取其內容。我通過以下this example創建了我的適配器。瘋狂的SQLite和遊標泄漏AutoComplete
該適配器工程到目前爲止,但我沒有最終確定泄漏和遊標上的錯誤。我的問題是:如何關閉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;
但我收到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 [email protected] 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)
有關如何解決這些錯誤的任何想法?謝謝!
嗨馬克!也許我做錯了?我不確定我是否理解如何正確處理這個問題。我的tabhost包含一個包含AutoCompleteTextView的視圖。我在一個單獨的類中實現了這個視圖(因此它沒有onCreate()和onDestroy()),我只通過構造函數中的參數引用活動(即tabhost)。這就是爲什麼我不能使用startManagingCursor()。或者也許有辦法,但我不知道如何。 (我不知道我是否清楚地解釋了我的困境。) – Zarah 2010-10-20 15:28:37
@Zarah:恕我直言,一種自定義的'View'不應該查詢數據庫 - 它會壓縮我們在Android中有限的MVC/MVP結構。從別的地方查詢你的數據庫,比如活動,並將結果提供給自定義的'View',就像你使用'ListView'一樣(ListView'不查詢數據庫 - 你通過' CursorAdapter')。不管你在哪裏查詢,你都可以在Activity上調用'startManagingCursor()',這應該可以在任何地方很容易地訪問(例如,在你自定義的'View'中'getContext()')。 – CommonsWare 2010-10-20 15:45:48
Hi @Mark!感謝您的輸入!偉大的見解,一如既往! :)這就是我所做的。我在我的Activity中查詢數據庫,並將光標傳遞給View。我試圖使用SimpleCursorAdapter而不是我的自定義適配器,以消除可能的錯誤來源。但是,AutoCompleteTextView不會自動過濾光標的內容。從我讀過的,我將不得不創建一個FilterQueryProvider,它有一個abstact runQuery()方法。這是否意味着我需要重新查詢(這會將我們帶回MVC問題),還是您知道還有其他方法? – Zarah 2010-10-21 05:03:27