Hi
I am writing an Android application in which I want to retrieve the images stored in Gallery folder of Device/emulator. Can any one give me sample code regarding how to achieve this.
Thanks and Regards
Hi I am writing an Android application in which I want to retrieve the
Share
If you have path where your images are stored, use this code to get image as bitmap.
You need to iterate through the path: ex
File f=new File(“path of dir”);
Now get all files using: f.listFiles();
This is s fair idea……….
Hope it will help……..