Hello,I would like to show the phone's photo gallery and when the user selects an image then notify my application on the image selected so I can get that images informations.
is that possible and how?
thanks in advanced maxsap.
Hello,I would like to show the phone's photo gallery and when the user selects an image then notify my application on the image selected so I can get that images informations.
is that possible and how?
thanks in advanced maxsap.
See if the answer in this thread helps: How to get the images from device in Android application
hi,
u can get the absolute path of your image stored in the Gallery of your phone by
Environment.getExternalStorageDirectory();
here there are different options available. You can use DIRECTORY_PICTURES where all the images are stored in the SD Card.
now u can use this to get your directory file.
u can try this out it works for me