I am using the Camera Activity to capture the picture. I call it with the MediaStore.EXTRA_OUTPUT extra parameter. The image is correctly saved to provided path, put it is saved also to the gallery folder, so I can view the image in "Gallery" application - can I avoid this?

...
File file = new File(Environment.getExternalStorageDirectory(), "Test.jpg" );
iImageOutputUri = Uri.fromFile( file );

// Start camera intent to capture image
Intent intent = new Intent( MediaStore.ACTION_IMAGE_CAPTURE );
intent.putExtra( MediaStore.EXTRA_OUTPUT, iImageOutputUri );
startActivityForResult( intent, CAPTURE_IMAGE );
...

Thanks

link|improve this question

64% accept rate
+1 for good question. I was always wondering why all my applications using the camera are saving the pictures in the gallery as well. – Chris Mar 7 '11 at 15:58
1  
I came to a conclusion that you cannot really predict on what camera activity really does. It partially depends on how customized android version is (thus a custom camera activity, etc.). The only way to solve this is to write your own camera activity. For me it was the easiest way to work around all the quirks and not to use any hacks. – Audrius Mar 7 '11 at 17:11
1  
Hi Audrius, I agree with you - it depends on the device - on some phones it is saving the image also to gallery (e.g. LG-P500), on some not (e.g. Samsung Nexus S). Many aspects of the camera activity are pretty bad, it does not allow to specify parameters, like the minimum/maximum image quality, which is totally up to user, it cannot return the JPEG in buffer, for e.g. further processing, etc. It is very simple to be used, but not as good as it can be. On the next project I will do my own camera handling... Bye – STeN Mar 8 '11 at 4:57
Is there a way to find out (reliabli) the url of the duplicate/undesired saved image? (i mean the one that is saved in the default camera folder which should not be saved at all)? Because if so, as a workaround one could delete that one... – matteo Dec 28 '11 at 15:28
1  
@matteo Check this out: stackoverflow.com/questions/6390163/… not pretty but I tried it and it sort of works. I don't refer to the accepted answer though - I tried Emil's approach. – Zainodis Apr 13 at 9:06
feedback

1 Answer

I don't believe you can avoid this. The gallery application looks through your SD card for images and displays them automatically.

link|improve this answer
This is not the point. The point is that the image is actually saved twice: once at the location provided as EXTRA_OUTPUT plus once at the default location. That's what the OP wants to avoid – matteo Dec 28 '11 at 15:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.