记录
之前用的是下面的代码
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);
先记录下