java – Android Share Intent选择器 – 与Facebook / Twitter共享文本社交媒体等

前端之家收集整理的这篇文章主要介绍了java – Android Share Intent选择器 – 与Facebook / Twitter共享文本社交媒体等前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我只发送文本,Share Intent选择器不会将Facebook / Twitter作为选项.

只有Gmail,Skype和Evernote可供选择.

这是我的代码

Intent shareIntent = new Intent(Intent.ACTION_SEND);

shareIntent.setType("plain/text");
shareIntent.putExtra(Intent.EXTRA_TEXT,text)
startActivity(Intent.createChooser(shareIntent,"Share using"));

我尝试了不同的setType()组合,包括“text / *”,“text / html”,并在putExtra中传递HTML文本,如下所示:

shareIntent.putExtra(Intent.EXTRA_TEXT,Html.fromHtml("<p>This is the text that will be shared.</p>"));

当我使用“text / plain”时,Facebook会出现一个选项,但选择它时文本不会加载.但该文本确实加载了Twitter,电子邮件,短信.

还有其他人遇到过这个问题吗?

当我分享图像时,没有问题,Facebook和其他社交媒体应用程序在列表中可用.

解决方法

这取决于每个应用程序定义的intent过滤器.
例如,如果我添加了intent-filter
android.intent.action.send

如果我从图库中选择单个图像,我的应用程序将出现在列表中.但是,如果我选择多个,我的应用程序将不会出现,因为我没有为android.intent.action.send_multiple添加intent-filer

所以它取决于facebook过滤的意图.您需要查看发行说明或帮助或开发人员页面.

原文链接:https://www.f2er.com/android/124174.html

猜你在找的Android相关文章