android刷新媒体数据库

这是个学习网址:http://www.2cto.com/kf/201304/201793.html

使用完
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, 
               Uri.parse("file://" + Environment.getExternalStorageDirectory().getAbsolutePath()))); 
来刷新媒体数据库后出现权限异常,然后就在AndroidMainfest.xml中加入以下权限:

android.intent.action.MEDIA_MOUNTED

<protected-broadcast android:name="android.intent.action.MEDIA_MOUNTED" />

Caused by: java.lang.SecurityException: Permission Denial: not allowed to send broadcast android.intent.action.MEDIA_MOUNTED from pid=31789, uid=10120

依然出现这个错误。后来在网上看到一个网友解释:
4.4及以后的系统是不允许发送这个广播的,原因是你可能只增加一个文件,然后就进行全盘扫描,这样很耗电,因此只有系统才能发送这个广播

可以发送这个:
sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://" + Environment.getExternalStorageDirectory())));  

测试通过!





你可能感兴趣的:(android刷新媒体数据库)