Reputation: 1457
I have this scenerio
http://www.cubixshade.com/images/test_photo.jpg
Open above url and I want an interface when photo box is clicked to browse sdcard images ?
does android sdk provide any component which browse image from sd card and show in android appplication ?
Upvotes: 0
Views: 1864
Reputation: 128428
Yes there are 2 scenario to pick image from SD-card images.
Upvotes: 2
Reputation: 6201
Here is the pseudo-code:
String pathToSdCard = Environment.getExternalStorageDirectory().getAbsolutePath();
new File(pathToSdCard ).list();
and also Check the link
Thanks
Upvotes: 1