我正在使用带有此代码的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");
当我使用电子邮件作为共享渠道时,我得到了我想要的:
Subject: I like to share with you.
Text: I like to share with you some stuff.
当我使用 WhatsApp 作为共享渠道时,我收到以下文本:
I like to share with you.
I like to share with you some stuff.
与 Whatsapp 分享时我期望什么:
I like to share with you some stuff.
如果共享通道基本上不支持主题,是否有任何选项/标志指示共享通道以抑制主题。
例如,电子邮件支持主题 -> 额外使用提供的意图。WhatsApp 不支持主题 -> 不要额外使用提供的意图。