【发布时间】:2016-07-04 17:12:30
【问题描述】:
我想通过whatsapp intent 分享Html 文本。我写的代码如下。
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/html");
sharingIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(new StringBuilder()
.append("<p><b>Some Content</b></p>")
.append("<small><p>More content</p></small>")
.toString()));
this.getContext().startActivity(Intent.createChooser(sharingIntent,"Share using"));
但 whatsapp 应用程序未显示在 Intent 选择器列表中。
谁能给我建议解决方案?
【问题讨论】:
-
你成功了吗
标签: android android-intent whatsapp