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 !