I\'m trying to take a photo using the android camera and telling it to save to the phone\'s gallery. I think i messed up on the path, but i can\'t seem to find my error. Cou
Try code given here: Add the Photo to a Gallery
Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
File f = new File(mCurrentPhotoPath);
Uri contentUri = Uri.fromFile(f);
mediaScanIntent.setData(contentUri);
this.sendBroadcast(mediaScanIntent);
I would suggest you to download example PhotoIntentActivity to read and understand how to fetch mCurrentPhotoPath value.