Android 与主题电子邮件/Whatsapp 共享

Chr*_*her 5 email android whatsapp android-sharing

我正在使用带有此代码的android本机共享:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT, "I like to share with you some stuff.");
intent.putExtra(Intent.EXTRA_SUBJECT, "I like to share with you.");
intent.setType(CONTENT_TYPE_TEXT);
startActivity(Intent.createChooser(intent, "Share");
Run Code Online (Sandbox Code Playgroud)

当我使用电子邮件作为分享渠道时,我得到了我想要的:

Subject: I like to share with you.
Text:    I like to share with you some stuff.
Run Code Online (Sandbox Code Playgroud)

当我使用 WhatsApp 作为分享渠道时,我得到以下文本:

I like to share with you.

I like to share with you some stuff.
Run Code Online (Sandbox Code Playgroud)

与 Whatsapp 分享时我期望什么:

I like to share with you some stuff.
Run Code Online (Sandbox Code Playgroud)

如果共享频道基本上不支持主题,是否有任何选项/标志指示共享频道来抑制主题。

例如,电子邮件支持主题 -> 使用额外提供的意图。WhatsApp 不支持主题 -> 不要额外使用提供的意图。

Vam*_*msi 2

使用类queryIntentActivities()的方法PackageManager,您可以根据包名称设置意图附加信息。

有关详细信息,请查看此链接:如何过滤特定应用程序的 ACTION_SEND 意图(并为每个应用程序设置不同的文本)