I launch the default camera using intent and save these camera images to external storage using the following path:
File file = new File(Environment.getExternalStorageDirectory() + File.separator + fileName);
But it does not appear in the gallery. The problem occurs in nexus 4.7 and moto G devices with OS 4.4.2
I'm trying with
mContext.sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri .parse("file://" + Environment.getExternalStorageDirectory())));
But it does not work
source share