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

Im adding images to a folder on the SDCARD. Since the images and my folder is not immediately visible in the Gallery im trying to get the MediaScannerConnection to update and show the folder/images in the gallery. This is not working so good for me since nothing shows up in Gallery. Im only testing in Eclipse AVD.

I dont see much talk about this maybe because the scanFile is new since api8. Could someone show how this is done?

Im trying it in both a service and Activity but keep getting uri=null when onScanCompleted.

share|improve this question
See this link also.rameshandroidworld.wordpress.com/2012/03/19/… – Ramesh Akula Apr 2 '12 at 7:28

5 Answers

up vote 14 down vote accepted
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"
            + Environment.getExternalStorageDirectory()))); 
share|improve this answer
oh was there an Intent to do this. Is this also API8?. Thank you! – Erik Jan 10 '11 at 13:14
not working really Uri.parse("/mnt/sdcard/PTPPservice/IMAG1175.jpg") Or is it a waiting time if scanner is busy? – Erik Jan 10 '11 at 14:08
really need to get this working, anyone? – Erik Jan 10 '11 at 16:39
1  
I got it working now, wanted to update and show one picture only not the hole SD Card. Thinking it would take long time to re-mount the SD if there is much on it. Is there a way to only update a single item? – Erik Jan 10 '11 at 20:09
This is old but it may be of help to someone - a more specified path: sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES))))‌​; – Yekhezkel Yovel Apr 11 at 16:17

I realized that perhaps you were looking for a solution what would work previous to api level 8, and I could not make sense of Mitch's answer. I solved it by building a class for scanning a single file:

import java.io.File;
import android.content.Context;
import android.media.MediaScannerConnection;
import android.media.MediaScannerConnection.MediaScannerConnectionClient;
import android.net.Uri;

public class SingleMediaScanner implements MediaScannerConnectionClient {

private MediaScannerConnection mMs;
private File mFile;

public SingleMediaScanner(Context context, File f) {
    mFile = f;
    mMs = new MediaScannerConnection(context, this);
    mMs.connect();
}

@Override
public void onMediaScannerConnected() {
    mMs.scanFile(mFile.getAbsolutePath(), null);
}

@Override
public void onScanCompleted(String path, Uri uri) {
    mMs.disconnect();
}

}

and you would use it like this to make the MediaScannerConnection scan a single file:

new SingleMediaScanner(this, file);

I hope this helps.

share|improve this answer
the media scanner connects then sits there, how long is this supposed to take? – hunterp Aug 31 '11 at 8:42
@Petrus this works fine. Thanks. But I got an issue. In my application I capture series of images. But finally show only the second image after the scan completed. Can you please tell me what could be the problem. – AnujAroshA Feb 27 '12 at 4:54

I was looking for the same thing and I found this in the ApiDemos, ExternalStorage. Solved all my problems as it scans a single file.

 MediaScannerConnection.scanFile(this,
          new String[] { file.toString() }, null,
          new MediaScannerConnection.OnScanCompletedListener() {
      public void onScanCompleted(String path, Uri uri) {
          Log.i("ExternalStorage", "Scanned " + path + ":");
          Log.i("ExternalStorage", "-> uri=" + uri);
      }
 });
share|improve this answer
3  
exists only since API level 8 – aloneguid Sep 18 '11 at 16:12

Do not do the sendBroadcast if you only want one image to appear in the gallery. That'd be a huge waste of resources. You'll need to make a MediaScannerConnectionClient and then call connect() on the MediaScannerConnection you make from it to scan the file. Here's an example:

private MediaScannerConnectionClient mediaScannerConnectionClient = 
    new MediaScannerConnectionClient() {

    @Override
    public void onMediaScannerConnected() {
        mediaScannerConnection.scanFile("pathToImage/someImage.jpg", null);
    }

    @Override
    public void onScanCompleted(String path, Uri uri) {
        if(path.equals("pathToImage/someImage.jpg"))
            mediaScannerConnection.disconnect();
    }
};
new MediaScannerConnection(context, mediaScannerConnectionClient).connect();
share|improve this answer
1  
what is MEDIA_SCANNER_CONNECTION? – atreat Oct 3 '12 at 15:26
This worked better than some other solutions – Chris.Jenkins Feb 20 at 13:58

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

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.