Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I save an image to the sdcard and it doesn't appear in the Gallery application until I pull off the sdcard and return it back.

Do you have any idea why is it so?

Seems like the Gallery application has some cache that isn't updated on file save...

Actually, I also want to open the just-saved image in Gallery application and have no success with that
this is my question about this issue.

share|improve this question

8 Answers

up vote 15 down vote accepted

The system scans the SD card when it is mounted to find any new image (and other) files. If you are programmatically adding a file, then you can use this class:

http://developer.android.com/reference/android/media/MediaScannerConnection.html

share|improve this answer
Thank you for your answer. I will check your solution soon... – Michael Kessler Feb 1 '10 at 0:25

My answer to the original question and to anyone else that may have this problem:

I was having this same problem, images in my app that people saved to the SD card were not showing up in their Gallery immediately. After some searching I found this one line of code inserted after my 'save to sdcard' code that fixed the problem:

sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory())));
share|improve this answer
1  
That worked thanks. – Lalit Poptani Sep 24 '11 at 9:03
Love you man!!! – makki Jul 19 '12 at 7:37
thank you so much... – Taruni Aug 8 '12 at 5:49
do we need to use media scanner to be able to use this broadcast? i am using anothermethod to display images in my gallery. When i am using above sendBroadcast on save button click my gallery is not updated with the new image! – change Nov 10 '12 at 1:42
It's old but this may help someone - a more specific path: sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES))))‌​; This method (this answer, not only my comment) doesn't work on the emulator. Test on real device. – Yekhezkel Yovel Apr 11 at 16:19

You can also add an Image to the Media Gallery by intent, have a look at the example code to see how it is done:

ContentValues image = new ContentValues();

image.put(Images.Media.TITLE, imageTitle);
image.put(Images.Media.DISPLAY_NAME, imageDisplayName);
image.put(Images.Media.DESCRIPTION, imageDescription);
image.put(Images.Media.DATE_ADDED, dateTaken);
image.put(Images.Media.DATE_TAKEN, dateTaken);
image.put(Images.Media.DATE_MODIFIED, dateTaken);
image.put(Images.Media.MIME_TYPE, "image/png");
image.put(Images.Media.ORIENTATION, 0);

 File parent = imageFile.getParentFile();
 String path = parent.toString().toLowerCase();
 String name = parent.getName().toLowerCase();
 image.put(Images.ImageColumns.BUCKET_ID, path.hashCode());
 image.put(Images.ImageColumns.BUCKET_DISPLAY_NAME, name);
 image.put(Images.Media.SIZE, imageFile.length());

 image.put(Images.Media.DATA, imageFile.getAbsolutePath());

 Uri result = context.getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, image);
share|improve this answer

there is an app in the emulator that says - ' Dev Tools'

click on that and select ' Media Scanning'.. all the images ll get scanned

share|improve this answer
great to know, the only way I knew before you said that is to reboot the phone :) – mishkin Dec 10 '10 at 21:38
do you have any sample code on this? – xCode Mar 10 '11 at 13:39

Here is the code for the MediaScannerConnection:

MyMediaConnectorClient client = new MyMediaConnectorClient(newfile);
MediaScannerConnection scanner = new MediaScannerConnection(context, client);
client.setScanner(scanner);
scanner.connect();

newfile is the File object of your new/saved file.

share|improve this answer
1  
Thank you for your answer. Actually, I've already finished this project long time ago... I don't even remember what was the solution that I've used. Other users might find your solution helpful if you'd also provide the implementation of MyMediaConnectorClient... – Michael Kessler Mar 8 '10 at 11:33
yes - i'm having real headaches with this at the moment. Please post up :) – steve Mar 31 '10 at 15:31
do you need more infos? – 3dmg Mar 31 '10 at 15:40
Yes I'm not really clear about how the flow should be -Correct me where I am wrong I can use MediaScannerConnection to update the SDCAARD info so I take picture with camera and pass the new file into the MSC and now I can access the file with with a connection scanner client? – steve Mar 31 '10 at 18:02
The flow is: you take a picture, save it to your sdcard and then make the scanner update, so that the filesystem gets updated to see your saved pic in the device gallery. If you dont do that with the scanner, you see your pic after the next device restart in the gallery. – 3dmg Apr 1 '10 at 14:33

My code for MyMediaConnectorClient:

public class MyMediaConnectorClient implements MediaScannerConnectionClient {

String _fisier;
MediaScannerConnection MEDIA_SCANNER_CONNECTION;

public MyMediaConnectorClient(String nume) {
    _fisier = nume;
}

public void setScanner(MediaScannerConnection msc){
    MEDIA_SCANNER_CONNECTION = msc;
}

@Override
public void onMediaScannerConnected() {
    MEDIA_SCANNER_CONNECTION.scanFile(_fisier, null);
}

@Override
public void onScanCompleted(String path, Uri uri) {
    if(path.equals(_fisier))
        MEDIA_SCANNER_CONNECTION.disconnect();
}

}

share|improve this answer

Let your activity implement 'MediaScannerConnectionClient' and add this to your activity:

private void startScan() 
{ 
    if(conn!=null) conn.disconnect();  
    conn = new MediaScannerConnection(YourActivity.this,YourActivity.this); 
    conn.connect(); 
} 

@Override 
public void onMediaScannerConnected() { 
    try{
        conn.scanFile(yourImagePath, "image/*");
       } catch (java.lang.IllegalStateException e){
       }
}

@Override 
public void onScanCompleted(String path, Uri uri) { 
    conn.disconnect(); 
} 
share|improve this answer

Use this after saving the image

sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory())));
share|improve this answer
1  
This works but it's not the best solution. You are tricking the system into thinking the SD card would be (re-)mounted and possibly forcing rescanning the whole SD card. MediaScanner.scanFile(..) is the best solution when you now the file you want to add. – pocmo Oct 4 '12 at 15:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.