标签:android style blog http io ar 使用 sp on
当在Android4.4上进行图片的扫描功能开发时一般会使用:sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory()+ picPath)));的广播
但因为Android4.4中限制了系统应用才有权限使用广播通知系统扫描SD卡,所以会报上面的错误。
解决方法:使用MediaScannerConnection执行具体文件或文件夹进行扫描
可以看看这篇文章:http://www.thinksaas.cn/group/topic/219309/
关于 Permission Denial: not allowed to send broadcast android.intent.action.MEDIA_MOUNTED from 错误原因
标签:android style blog http io ar 使用 sp on
原文地址:http://blog.csdn.net/eoeandroida/article/details/41806525