我一直试图在StrictMode中运行我的应用程序,以检查是否有可能潜行的隐藏问题。我遇到的一个问题是使用ContentResolver时Leaked DatabaseConections似乎是假阳性。
经过一些实验后,问题简化为以下两行代码:
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)
我假设这是特定于特定游标由contentProvider返回的事实(因此它不是直接的SQLite游标)。
如果这确实是假阳性或游标泄漏,是否有人有任何见识。
最佳答案
我想我可以解释问题出在哪里。
当查询数据库时,您会收到一个异常。因此,将创建一个游标c.close()不会被调用,因为有一个异常。因此,您必须将Cursor的创建置于try catch块中,并在finally块中关闭curson。
关于Android StrictMode报告误报,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6141172/