I am developing an application that uses the default camera application for a phone to capture an image, and then allows the user to do some basic editing.
I am using the following snippet ...
Intentintent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
imageCaptureIntent.putExtra(MediaStore.EXTRA_OUTPUT,*<file>*);
startActivityForResult(intent, TAKE_PHOTO_CODE);
I want the captured image to be saved in a place compatible with the backup camera application. Is it possible to use the DCIM folder and assume that all phones will use this location?
source
share