I am using the following code to take a picture:

private static final int TAKE_PHOTO_CODE = 1;

final Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(tFile));
startActivityForResult(intent, TAKE_PHOTO_CODE);

This code works fine however I am getting a copy of every picture I take automatically appearing in the "Camera Shots" gallery as well as where I want the picture to go.

How do I stop it automatically copying my picture?

The file name is not even the same as the one I specified so it is not like I can delete it easily.

Thanks for any help!

link|improve this question

80% accept rate
I found an example of someone who added a listener so when they take a picture it notifies them that an image has been placed in the gallery and this can then be removed but I would much rather stop the duplicate image in the first place. Any ideas as I am really stuck on this one? – Lee Worbey Sep 27 '11 at 11:58
Hi Lee, have you found a answer for this issue ? Because I got the same problem. Thanks – Chinthaka Nov 10 '11 at 13:05
No I still haven't figured out how to fix this. I am currently trying to find some code that lets me get the file name of the latest picture added to the gallery so I can delete it. If I can't stop it duplicating images at least if I can delete the duplicates it is the next best thing. – Lee Worbey Nov 14 '11 at 12:54
feedback

1 Answer

I have found a answer.

Following function delete the last photo saved to media storage.

public void deleteingCapturedImage() {

        String[] projection = { MediaStore.Images.ImageColumns.SIZE,
                MediaStore.Images.ImageColumns.DISPLAY_NAME,
                MediaStore.Images.ImageColumns.DATA, BaseColumns._ID, };

        Cursor c = null;
        Uri u = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
        Log.i("InfoLog", "on activityresult Uri u " + u.toString());

        try {
            if (u != null) {
                c = managedQuery(u, projection, null, null, null);
            }
            if ((c != null) && (c.moveToLast())) {
                Log.i(TAG, "c.getString(0) " + c.getString(0));
                Log.i(TAG, "c.getString(1) " + c.getString(1));
                Log.i(TAG, "c.getString(2) " + c.getString(2));
                Log.i(TAG, "c.getString(3) " + c.getString(3));

                ContentResolver cr = getContentResolver();
                int i = cr.delete(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, BaseColumns._ID + "=" + c.getString(3), null);

                Log.v(TAG, "Number of column deleted : " + i);

            }
        } finally {
            if (c != null) {
                c.close();
            }
        }
    }

Please call above function within onActivityResult.

link|improve this answer
Thanks, I'll give that a go when I get a chance and see how I get on! – Lee Worbey Nov 17 '11 at 14:50
it works for me...Thanks – Last Warrior Apr 2 at 9:54
feedback

Your Answer

 
or
required, but never shown

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