Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android, Pick Image

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

like image 386
Troj Avatar asked Dec 28 '22 05:12

Troj


1 Answers

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

Have a look here:

How to pick an image from gallery (SD Card) for my app?

Further searching in SO yields this, a complete solution:

Get/pick an image from Android's built-in Gallery app programmatically

like image 111
SteD Avatar answered Dec 30 '22 20:12

SteD