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 have an application within which I would like to be able to share an image. In order to achieve this, I would like to start a new intent from which the user can select the application that (s)he wants to share the image at.

I have tried the following :

Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");
share.putExtra(Intent.EXTRA_STREAM, Uri.parse(path));
startActivity(Intent.createChooser(share, "share"));

As a result, I get the new service started regarding where I would like to share the image, but as soon as I select one of the choices - lets assume I select facebook - the image does not come.

When I do it this way :

Intent share = new Intent(Intent.ACTION_SEND);
share.setData(Uri.parse(path));
startActivity(Intent.createChooser(share, "share"));

As a result, I get an error message stating that no application that supports what I'm trying to do exists.

From what I have read so far, the first approach was supposed to work. What am I missing here ?

Cheers !

share|improve this question
Any kind of direction would be nice =) – Pumpkin Jul 22 '12 at 21:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.