I am trying to open a jpg image file in gallery. This gives a error. I am using the code below

Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setDataAndType(Uri.parse("/mnt/sdcard/image123.jpg"),"image/jpeg"); startActivityForResult(intent, 900);

This gives a option to open file in gallery. I select Gallery from the list. But it does not open up. I use ASTRO file manager and open the same image file. It opens up fine now. Please let me know if something is wrong. Thank you for your help.

link|improve this question

feedback

1 Answer

Where do you got /mnt/sdcard. Try Environment.getExternalStorageDirectory().getAbsolutePath() instead.

link|improve this answer
I am actually using this Environment.getExternalStorageDirectory().getAbsolutePath() to get the path. How ever when i add "file://" prefix as "file://mnt/sdcard" things start to work... but I am not sure if i can hard code this file://.... will this work in all systems of android? Please advice. – Vinodtiru Jul 14 '11 at 23:08
yes it's a standard uri scheme: en.wikipedia.org/wiki/File_URI_scheme – mibollma Jul 14 '11 at 23:10
Thank you very much – Vinodtiru Jul 14 '11 at 23:40
feedback

Your Answer

 
or
required, but never shown

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