- 終極完美解決方案
那麼到這裏可能有人又會問了,若是我想把圖片保存到指定的文件夾,同時又須要圖片出如今圖庫裏呢?答案是能夠的,sdk還提供了這樣一個方法:code
MediaStore.Images.Media.insertImage(getContentResolver(), "image path", "title", "description");
上述方法的第二個參數是image path,這樣的話就有思路了,首先本身寫方法把圖片指定到指定的文件夾,而後調用上述方法把剛保存的圖片路徑傳入進去,最後通知圖庫更新。orm
因此寫了一個方法,完整的代碼以下:對象
public static void saveImageToGallery(Context context, Bitmap bmp) { // 首先保存圖片 File appDir = new File(Environment.getExternalStorageDirectory(), "Boohee"); if (!appDir.exists()) { appDir.mkdir(); } String fileName = System.currentTimeMillis() + ".jpg"; File file = new File(appDir, fileName); try { FileOutputStream fos = new FileOutputStream(file); bmp.compress(CompressFormat.JPEG, 100, fos); fos.flush(); fos.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } // 其次把文件插入到系統圖庫 try { MediaStore.Images.Media.insertImage(context.getContentResolver(), file.getAbsolutePath(), fileName, null); } catch (FileNotFoundException e) { e.printStackTrace(); } // 最後通知圖庫更新 context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://" + path))); }
原博客地址:http://stormzhang.github.io/android/2014/07/24/android-save-image-to-gallery/