I have extracted image uri, now I would like to open image with Android's default image viewer. Or even better, user could choose what program to use to open the image. Something like File Explorers offer you if you try to open a file.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Accepted answer was not working for me, What had worked:
|
|||||||||
|
|
Ask myself, answer myself also:
It will also ask what program to use to view the file. |
|||||||||
|
|
Try use it:
|
||||
|
|
|
This page might help, Open an image in Android's built-in Gallery app programmatically It says it's just for gallery, but I don't see him specifically using an Intent for the gallery. |
|||||
|
|
A much cleaner, safer answer to this problem (you really shouldn't hard code Strings):
All you have to do is append the image id to the end of the path for the EXTERNAL_CONTENT_URI. Then launch an Intent with the View action, and the Uri. The image id comes from querying the content resolver. |
|||
|
|