I would like to launch the native android camera and save the image at a specified location. The problem is after I click the photo, the preview comes up with the options to Save/Discard. After I click save the camera launches again, and the image I captured is not saved in the specified location. Rather it gets saved in the default location. Actually I need the location of the image I clicked. Here's the code I use to launch the camera.
MediaScannerConnection_MSC = null;
String fileName = String.valueOf(System.currentTimeMillis())+".jpg";
f = new File(Environment.getExternalStorageDirectory(), fileName);
_imageUri = Uri.fromFile(f);
// create new Intent
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
intent.putExtra(MediaStore.EXTRA_OUTPUT, _imageUri);
startActivityForResult(intent, 1);
Here's the code after returning from the camera
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == 1) {
if (resultCode == RESULT_OK) {
// use imageUri here to access the image
final String imagePath = f.getAbsolutePath();
_MSC = new MediaScannerConnection(this, new MediaScannerConnectionClient() {
public void onMediaScannerConnected() {
_MSC.scanFile(imagePath, null);
}
public void onScanCompleted(String path, Uri uri) {
_MSC.disconnect();
_MSC = null;
}
});
_MSC.connect();
}
}
}
what mistake am I doing here