【发布时间】:2018-02-10 07:19:04
【问题描述】:
无法通过最新 WhatsApp 更新中的 WhatsApp 从我自己的 android 应用程序共享 html。
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
shareIntent.setType("text/html");
shareIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(htmlText));
shareIntent.putExtra(Intent.EXTRA_HTML_TEXT, htmlText);
这会打开意图选择器,WhatsApp 就在那里。选择后要求选择要分享的联系人,但“发送”按钮什么也不做。
顺便说一句,“文本/纯文本”的共享仍然可以正常工作。有什么想法吗?
【问题讨论】:
-
尝试下载最新的 apk 并分析它(检查它的 android manifest 是否有过滤器)