我现在计划分享一些文本,并链接到手机上的SNS应用。我使用的代码如下:
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_TEXT, "the word i like to say");
shareIntent.setType("text/plain");
this.startActivity(Intent.createChooser(shareInt
Whatsapp允许您通过以下方式链接到新消息
<a href="whatsapp://send?text=The text to share!" data-action="share/whatsapp/share" class="Share-link m-whatsapp">
如何使用WeChat进行相同的操作?