in my app, i initially load all the images from the gallery, i.e. (MediaStore.Images.Media.EXTERNAL_CONTENT_URI)
user can take picture via my app, but i have a custom camera, i.e. i do not use default phone camera to take pictures, i have my own surface view, i deal with Camera object directly, and handle the camera picture. and i save this image in a custom folder.
i want the newly taken picture to appear in my gallery once user returns to my app
problem: the newly taken picture does not appear in the cursor i loaded with MediaStore.Images.Media.EXTERNAL_CONTENT_URI
the problem is gone only when i reinstall the app and force a rescan.
how do i fix this? i want every picture that was immediately taken will appear in my cursor?
i have done some researhc, but don't tell me the contentvalues with the startactivity solution like below
startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);
this does not work, because again, i have my own camera, i am not using the default camera activity from the phone
i also tried
getContentResolver().notifyChange(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, null);
this does not work either
can someone please help?
Thanks
You just need to send an broadcast "ACTION_MEDIA_SCANNER_SCAN_FILE" so that the mediascanner can scan for the image you saved.
just set the uri of the the newly created image. :)