下载图片或视频同步到手机相册

二次信任 提交于 2020-02-10 17:26:15

记录
之前用的是下面的代码

Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
intent.setData(Uri.fromFile(myCaptureFile ));
sendBroadcast(intent);//发送一个广播

发现在某些手机上不好使,然后通过查找资料替换为下面的代码

MediaScannerConnection.scanFile(context, new String[]{file.getAbsolutePath()}, null, null);

先记录下

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!