6
When generating the photo through my app it correctly creates the folder and saves the photos taken there, but when I go in the Mobile Gallery is as if the photos did not exist, the default Android gallery does not recognize the files.
Would anyone care to tell me if you have any permission I need to give so that the photos can be viewed in the gallery? Or even if this would be an Android setting.
I’m Using Android 4.0
private void addImage() {
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
intent.setData(uri);
this.sendBroadcast(intent);
}
It worked fine, thank you very much
– Gomes