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 want to give the user the possibility to share a Image and a Text with Twitter and Facebook.

Actually my code can launch Android's share intent and if the user selects Facebook, all works fine, the Image is attached and the text is shown on the body of the new status.

But something is wrong with Twitter, if i only put a Image all works fine, the image is detected by twitter and automatically uploaded to twipic, then twitter posts the link of the image on the tweet. But if i put a image and a text, then, twitter doesn't detect the image and it only puts the text on the tweet, the image is ignored. What is wrong?

this is my code:

Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse("file:///sdcard/image.jpg");
sharingIntent.setType("image/*");
sharingIntent.putExtra(Intent.EXTRA_TEXT, "Body text of the new status");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image using"));
share|improve this question
Have a look at this post: stackoverflow.com/questions/2077008/… – Derzu Jun 29 '12 at 23:48

2 Answers

up vote 5 down vote accepted

Specify MIME type also for the text. "text/plain" is the type of text data MIME. Try using "*/*" as MIME, so you can send any generic data type.

Also try changing ACTION_SEND to ACTION_SEND_MULTIPLE which specialized for delivering multiple data.

More info about ACTION_SEND_MULTPLE and handling MIME types:

http://developer.android.com/reference/android/content/Intent.html

share|improve this answer
I tryed with / and didn't works. I can't use ACTION_SEND_MULTIPLE because it doesn't exists, at least on Android 1.5. – AndroidUser99 Nov 28 '11 at 14:03
Now i tryed with ACTION_SEND_MULTIPLE and Android api 4, and it doesn't works. – AndroidUser99 Nov 28 '11 at 14:05
did you tried "*/*"? – Nikola Despotoski Nov 28 '11 at 14:17
yes, doesnt works :( – AndroidUser99 Nov 28 '11 at 14:42
Well, research if twitter application can do multiple data requests to its API...Does it work with facebook app? – Nikola Despotoski Nov 28 '11 at 18:26
show 2 more comments

Try using ACTION_SEND, as you did instead of ACTION_SEND_MULTIPLE .

ACTION_SEND_MULTIPLE made the new intents opened for sharing to force close (gmail,g+ etc).

This works perfect for me:

    Intent shareIntent = new Intent(Intent.ACTION_SEND);
    shareIntent.setType("*/*");
    shareIntent.putExtra(Intent.EXTRA_TEXT, "Body text of the new status");
    shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
    return shareIntent; 
share|improve this answer

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.