I am trying to open an image / picture in the Gallery built-in app from inside my application.
I have a URI of the picture (the picture is located on the SD card).
Do you have any suggestions?
Thank you in advance.
feedback
|
|
This is a complete solution
} | |||||||||||||
feedback
|
|
Here is an update to the fine code that hcpl posted. but this works with OI file manager, astro file manager AND the media gallery too (tested). so i guess it will work with every file manager (are there many others than those mentioned?). did some corrections to the code he wrote.
| |||||||||||||
feedback
|
|
basis with the above code, I reflected the code like below, may be it's more suitable:
| |||
|
feedback
|
|
Assuming you have an image folder in your SD card directory for images only.
Then you can decide with what you would like to do with the content back in your activity. This was an example to retrieve the path name for the image, test this with your code just to make sure you can handle the results coming back. You can change the code as needed to better fit your needs.
My advice is to try to get retrieving images working correctly, I think the problem is the content of accessing the images on the sdcard. Take a look at Displaying images on sd card. If you can get that up and running, probably by the example supplying a correct provider, you should be able to figure out a work-around for your code. Keep me updated by updating this question with your progress. Good luck | |||||||||||||
feedback
|
| ||||
|
feedback
|
|
To display images and videos try this:
| |||
|
feedback
|
|
There are two useful tutorials about image picker with downloadable source code here: How to Create Android Image Picker How to Select and Crop Image on Android However, the app will be forced to close sometime, you can fix it by adding android:configChanges attribute into main activity in Manifest file like as:
It seems that the camera API lost control with orientation so this will help it. :) | ||||
|
feedback
|