This app i am making is taking pictures and saving it to sdcard but the images are not being shown in gallery...Is there something wrong with my code
public
Try this:
public void galleryAddPic(String file) { File f = new File(file); Uri contentUri = Uri.fromFile(f); Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE,contentUri); sendBroadcast(mediaScanIntent); }