このコードを使用して、ギャラリーを再スキャンしました。しかし、保存するたびに、ギャラリーの既存の画像が上書きされ、保存した最新の画像だけが表示されます:(どうすればいいですか。助けてください:(
private boolean storeImage(Bitmap imageData, String filename) {
String iconsStoragePath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES) + "/" + "PixiePhotos" + "/";
File sdIconStorageDir = new File(iconsStoragePath);
sdIconStorageDir.mkdirs();
try {
String filePath = sdIconStorageDir.toString() + filename;
FileOutputStream fileOutputStream = new FileOutputStream(filePath);
BufferedOutputStream bos = new BufferedOutputStream(fileOutputStream);
imageData.compress(CompressFormat.JPEG, 100, bos);
bos.flush();
bos.close();
//MediaScannerConnection.scanFile(this, new String[] { sdIconStorageDir.getPath() }, new String[] { "image/jpeg" }, null);
File refreshFile = new File(filePath);
Intent scanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
scanIntent.setData(Uri.fromFile(refreshFile));
sendBroadcast(scanIntent);
} catch (FileNotFoundException e) {
Log.w("TAG", "Error saving image file: " + e.getMessage());
return false;
} catch (IOException e) {
Log.w("TAG", "Error saving image file: " + e.getMessage());
return false;
}
return true;
}