我最近实现了共享纯文本的操作发送意图。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?!
提前致谢