Android - Save images in an specific folder
问题 I need to save the pictures taken with my app in an specific folder. I\'ve read many solutions to this problem but I couldn\'t make any of them work so I ask for help. MainActivity.java public void onClick(View v) { Intent camera = new Intent( android.provider.MediaStore.ACTION_IMAGE_CAPTURE); //Folder is already created String dirName = Environment.getExternalStorageDirectory().getPath() + \"/MyAppFolder/MyApp\" + n + \".png\"; Uri uriSavedImage = Uri.fromFile(new File(dirName)); camera