保存图片,相册看不到的解决方法
保存图片,相册看不到的解决方法:保存完照片之后,调用下面的方法,android.provider.MediaStore就可以查到这个图片了
private void scanMedia(Context context, String path) { File file = new File(path); Uri uri = Uri.fromFile(file); Intent scanFileIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, uri); context.sendBroadcast(scanFileIntent); }