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.

link|improve this question

feedback

3 Answers

Accepted answer was not working for me,

What had worked:

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://" + "/sdcard/test.jpg"), "image/*");
startActivity(intent);
link|improve this answer
feedback
up vote 3 down vote accepted

Ask myself, answer myself also:

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("content://media/external/images/media/16"))); /** replace with your own uri */

It will also ask what program to use to view the file.

link|improve this answer
Hi hari, your code is useful for opening image. Can you have a solution to open folder of gallery. here is my question stackoverflow.com/questions/6519024/… – djk Jun 30 '11 at 6:34
@djk I just answer this quest here stackoverflow.com/questions/6074270/… see if it relate to your question. – PiyushMishra Nov 24 '11 at 10:57
feedback

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.

link|improve this answer
2  
Ah yes, thank you. I have seen it, but it is image picker. I'm interested in viewing image, not picking one usgin gallery. – Badr Hari Mar 21 '11 at 21:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.