在我的活动中,我有一个autoCompleteTextVIEw,它从我的自定义适配器获取其内容.我按照this example创建了适配器.
适配器到目前为止可以正常工作,但是我在泄漏和未完成的游标上遇到了很多错误.我的问题是:如何在runqueryOnBackgroundThread中关闭数据库?
这是我的方法:
@OverrIDepublic 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 closed10-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()中关闭数据库.
总结以上是内存溢出为你收集整理的疯狂的SQLite和自动完成上的光标泄漏全部内容,希望文章能够帮你解决疯狂的SQLite和自动完成上的光标泄漏所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)