Android 儲存圖片到系統圖庫
阿新 • • 發佈:2018-11-21
儲存圖片之後在系統圖庫找不到儲存的圖片,遂決定徹底檢視並解決下。
Adnroid中儲存圖片的方法可能有如下兩種:
- 第一種是自己寫方法,如下程式碼:
public static void saveImage(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();
}
}
以上程式碼便是將Bitmap儲存圖片到指定的路徑/sdcard/Boohee/下,檔名以當前系統時間命名,但是這種方法儲存的圖片沒有加入到系統圖庫中
- 第二種是呼叫系統提供的插入相簿的方法:
MediaStore.Images.Media.insertImage(getContentResolver(), bitmap, "title", "description");
呼叫以上系統自帶的方法會把bitmap物件儲存到系統圖庫中,但是這種方法無法指定儲存的路徑和名稱,上述方法的title、description引數只是插入資料庫中的欄位,真實的圖片名稱系統會自動分配。
看似上述第二種方法就是我們要用到的方法,但是可惜的呼叫上述第二種插入相簿的方法圖片並沒有立刻顯示在相簿中,而我們需要立刻更新系統相簿以便讓使用者可以立刻檢視到這張圖片。
- 更新系統相簿的方法
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory())));
上面那條廣播是掃描整個sd卡的廣播,如果你sd卡里面東西很多會掃描很久,在掃描當中我們是不能訪問sd卡,所以這樣子使用者體現很不好,所以下面我們還有如下的方法:
sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(new File("/sdcard/Boohee/image.jpg"))););
或者還有如下方法:
final MediaScannerConnection msc = new MediaScannerConnection(mContext, new MediaScannerConnectionClient() {
public void onMediaScannerConnected() {
msc.scanFile("/sdcard/Boohee/image.jpg", "image/jpeg");
}
public void onScanCompleted(String path, Uri uri) {
Log.v(TAG, "scan completed");
msc.disconnect();
}
});
上面程式碼的圖片路徑不管是通過自己寫方法還是系統插入相簿的方法都可以很容易的獲取到。
- 終極完美解決方案
那麼到這裡可能有人又會問了,如果我想把圖片儲存到指定的資料夾,同時又需要圖片出現在相簿裡呢?答案是可以的,sdk還提供了這樣一個方法:
MediaStore.Images.Media.insertImage(getContentResolver(), "image path", "title", "description");
上述方法的第二個引數是image path,這樣的話就有思路了,首先自己寫方法把圖片指定到指定的資料夾,然後呼叫上述方法把剛儲存的圖片路徑傳入進去,最後通知相簿更新。
所以寫了一個方法,完整的程式碼如下:
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.com/android/2014/07/24/android-save-image-to-gallery/