博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android.database.StaleDataException
阅读量:6343 次
发布时间:2019-06-22

本文共 861 字,大约阅读时间需要 2 分钟。

  hot3.png

2013-05-17 19:21 by 清炒白菜,  360 阅读,  0 评论,  , 

一般用Cursor后, 就立即close()了,但是在用managedQuery的时候, 却不能主动调用close()方法, 否则在Android 4.0+的系统上, 会发生崩溃

google的文档是这么写的

Warning: Do not call close() on a cursor obtained using this method, because the activity will do that for you at the appropriate time. However, if you call stopManagingCursor(Cursor) on a cursor from a managed query, the system will not automatically close the cursor and, in that case, you must call close().

 

也有人说用下面的方法可以避免这个问题

这个问题其实很简单  估计大家在查询数据库的时候用的是这个函数  

viedoCursor = context.managedQuery(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, videoColumns,null, null, null);
只要换成这样就可以了:
ContentResolver cr = context.getContentResolver();
viedoCursor = cr.query(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, videoColumns,null, null, null);
我也是无意间发现有着两种写法的 然后试了一下问题就解决了

 

参考:

转载于:https://my.oschina.net/dongwq/blog/177990

你可能感兴趣的文章
Android界面相关的类
查看>>
利用图片中的exif元数据批量查找图片中所包含的GPS信息
查看>>
Bootstrap手风琴效果
查看>>
[转]EntityFramework Core技术线路(EF7已经更名为EF Core,并于2016年6月底发布)
查看>>
jmeter插件之VariablesFromCSV
查看>>
Ensure that you have installed a JDK (not just a JRE) and configured your JAVA_HOME system variable
查看>>
【转】测试管理一点点建议
查看>>
Spring Boot 启用Gzip压缩
查看>>
"Swift"编程语言
查看>>
轻松学习JavaScript十二:JavaScript基于面向对象之创建对象(二)
查看>>
spring中ApplicationContext
查看>>
windows下安装TA-Lib库
查看>>
【python】统一转换日期格式dateutil.parser.parse
查看>>
JAVA传入一个字符串,返回一个字符串中的大写字母
查看>>
【Java】Java Queue的简介
查看>>
Apache Kylin Cube 的存储
查看>>
LINQ 如何动态创建 Where 子查询
查看>>
在Eclipse中用Maven打包jar包--完整版
查看>>
网盘资料
查看>>
基于Socket创建Web服务
查看>>