Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working in an app that should show an image located via HTTP using standard android gallery, but gallery doesn't show the image.

Current code:

Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(model.get_media_URL()), "image/jpeg");
startActivity(intent);

Error:

09-11 19:24:38.712: ERROR/AndroidRuntime(2939): FATAL EXCEPTION: main
09-11 19:24:38.712: ERROR/AndroidRuntime(2939): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=http://www.XXXXX.com/XXXX.jpg typ=image/jpeg }
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1409)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.app.Instrumentation.execStartActivity(Instrumentation.java:1379)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.app.Activity.startActivityFromChild(Activity.java:3067)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.app.Activity.startActivityForResult(Activity.java:2847)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.app.Activity.startActivity(Activity.java:2933)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at com.treto.app.Activity_ChallengeDetailParticipations$3.onItemClick(Activity_ChallengeDetailParticipations.java:199)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.widget.AdapterView.performItemClick(AdapterView.java:284)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.widget.ListView.performItemClick(ListView.java:3513)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.widget.AbsListView$PerformClick.run(AbsListView.java:1812)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.os.Handler.handleCallback(Handler.java:587)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.os.Handler.dispatchMessage(Handler.java:92)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.os.Looper.loop(Looper.java:130)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at android.app.ActivityThread.main(ActivityThread.java:3683)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at java.lang.reflect.Method.invokeNative(Native Method)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at java.lang.reflect.Method.invoke(Method.java:507)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
09-11 19:24:38.712: ERROR/AndroidRuntime(2939):     at dalvik.system.NativeStart.main(Native Method)

If I use this code instead:

Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setData(Uri.parse(model.get_media_URL()));
startActivity(intent);

It works but opens internet browser instead of standard gallery,

Thanks!

share|improve this question

1 Answer

up vote 0 down vote accepted
Intent intentBrowseFiles = new Intent(Intent.ACTION_GET_CONTENT);
intentBrowseFiles.setDataAndType(Uri.parse(model.get_media_URL()), "image/*");
intentBrowseFiles.setFlag(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intentBrowseFiles);
share|improve this answer
I'll try using your code... thank you very much! – SkyNetRush Mar 9 '12 at 13:46
This actually didn't work for me. I haven't found a solution yet. – senkir Apr 24 at 22:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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