我一直在尝试在 StrictMode 中运行我的应用程序,以检查是否存在任何可能偷偷摸摸的隐藏问题。我遇到的一个问题是,在使用 ContentResolver 时,Leaked DatabaseConctions 似乎是误报。
经过一些实验后,问题简化为以下两行代码:
Cursor c = context.getContentResolver().query(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, cols, null, null, MediaStore.Video.Media.DEFAULT_SORT_ORDER);
c.close()
上面的 2 行生成以下 StrictMode 违规:
ERROR/StrictMode(26219): Releasing cursor in a finalizer. Please ensure that you explicitly call close() on your cursor:
ERROR/StrictMode(26219): android.database.sqlite.DatabaseObjectNotClosedException: Application did not close the cursor or database object that was opened here
ERROR/StrictMode(26219):
at android.database.CursorWindow.<init>(CursorWindow.java:62)
at android.content.ContentProviderProxy.query(ContentProviderNative.java:403)
at android.content.ContentResolver.query(ContentResolver.java:302)
我假设这是特定于 Cursor 由 contentProvider 返回的事实(因此它不是直接的 SQLite 游标)。
如果这确实是误报或确实存在泄漏的光标,是否有人有任何见解。