【发布时间】:2014-12-19 14:19:35
【问题描述】:
我想通过 WhatsApp分享文字和网址。
我查看了几个链接,但它只有共享文本功能。
如何分享 URL + 文字?
这是我迄今为止尝试过的。
Intent whatsappIntent = new Intent(Intent.ACTION_SEND);
whatsappIntent.setType("text/plain");
whatsappIntent.setPackage("com.whatsapp");
whatsappIntent.putExtra(Intent.EXTRA_TEXT, "The text you wanted to share");
try {
activity.startActivity(whatsappIntent);
} catch (android.content.ActivityNotFoundException ex) {
ToastHelper.MakeShortText("Whatsapp have not been installed.");
}
【问题讨论】:
标签: android android-intent share whatsapp