我想通过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"));
但“Intent”选择器列表中未显示whatsapp应用程序。
有人能给我建议解决办法吗?
3条答案
按热度按时间qyswt5oh1#
试试这个
r6l8ljro2#
请在你的代码中修改这个,如果对你有帮助,请告诉我,
qacovj5a3#
你应该使用,例如。
打开intent中的url。