tags:

views:

47

answers:

1

Is there some possible way of picking images from picture folder?

+2  A: 

Basically you call the gallery intent and expect a result with onActivityForResult

Have a look here:

http://stackoverflow.com/questions/2507898/how-to-pick-a-image-from-gallery-sd-card-for-my-app-in-android

Further searching in SO yields this, a complete solution:

http://stackoverflow.com/questions/2169649/open-an-image-in-androids-built-in-gallery-app-programmatically

SteD