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 recently implemented the action-send intent to share a plain text. Facebook is installed and updated on my phone but only "Googlemail" and "Textmessage" are shown as options for sharing my text.

A short code snippet:

            Intent intent = new Intent(android.content.Intent.ACTION_SEND);
        intent.setType("plain/text");
        intent.putExtra(android.content.Intent.EXTRA_SUBJECT, item.getTitle());
        intent.putExtra(
                android.content.Intent.EXTRA_TEXT,
                (item.getDescription());
        startActivity(Intent.createChooser(intent, "Send..."));

Any suggestions what's wrong with my app?

Normally I would think that I dont have to implement the whole facebook sdk for my simple purpose?!

Thanks in advance

share|improve this question
Have you tried with intent.setType("image/jpeg");? Just try with this type and see whether facebook is appears on chooser. – user370305 Aug 5 '12 at 20:14
Oh yeah that gives me a lot other options including facebook. But now how can I insert my text there with an image as type? :/ PS: Guess that a kind of facebook-bug? – user1066006 Aug 5 '12 at 21:04

1 Answer

up vote 1 down vote accepted

The MIME type to use is text/plain, not plain/text.

share|improve this answer
Fine now I can choose facebook but it doenst take any of the text I'm giving. Its working with WhatsApp and Co. So is this now an unfixed facebook bug!? – user1066006 Aug 5 '12 at 22:03
@user1066006: That would be a question for Facebook. Assuming that you changed the MIME type, and assuming that getTitle() and getDescription() return non-null/non-empty values, what you have there seems OK. – CommonsWare Aug 5 '12 at 22:27
1  
Facebook have knowingly broken the filter contract for handling plain text. They want you to use their library, or use a URL in your text. – James Aug 6 '12 at 6:59

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.