I want to fetch all images in my application from android photo gallery .because I want to load an image into my application again after saving it into android gallery . For Saving my image into gallery I use below method.
MediaStore.Images.Media.insertImage(ContentResolverObj, bitMap, "uniqueTitle", "description");
Now programatically I want to fetch all images into my application and want to get above saved image on the basis of tile.Two questions here. 1st:Can I fetch all images from photo gallery of android ? 2nd:can I read single photo detail like title etc after fetching it.
I used this code and got image, maybe it works for you
You can find adapter code gridview and setadapter from below URL source code for adapter and gridview
by using this code i am able to display phone gallery images in gridview, depending on your requirement change this..