I would like to get all the images / photos / wallpapers from my Android device with the saved image outline.
I implemented code for collecting images from an SD card as follows:
String[] mProjection = { MediaStore.Images.Media._ID, MediaStore.Images.Media.DATA }; mCursor = cr.query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, mProjection, null, null, MediaStore.Images.Media.DEFAULT_SORT_ORDER);
From the code above, I can only get images from an SD card. But if the images are available in the phoneβs memory, how can I get images / photos / wallpapers? If I use INTERNAL_CONTENT_URI, it does not return cover information for other images.
please, any body help me ....
prasad.gai
source share