我最近实现了动作发送意图来共享纯文本。 Facebook已在我的手机上安装和更新,但只有“Googlemail”和“Textmessage”显示为共享文字的选项。
一个简短的代码段:
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..."));
有什么建议我的应用程序出了什么问题?
通常情况下,我认为我不需要为了我的简单目的而实现整个facebook sdk?!
提前致谢
答案 0 :(得分:4)
要使用的MIME类型为text/plain
,而不是plain/text
。