首页 > 技术文章 > 保存图片,相册看不到的解决方法

baron89 2015-07-09 16:16 原文

保存图片,相册看不到的解决方法:保存完照片之后,调用下面的方法,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);
    }

 

 

推荐阅读