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 an
File file = new File(absolutePath);
Uri uri = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, uri);
sendBroadcast(intent);