我想通过WhatsApp 分享文字和网址。
我查了几个链接,但它只有共享文字功能。
如何共享网址+文字?
这是我到目前为止所尝试的内容。
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.");
}
答案 0 :(得分:1)
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "this my text https://www.google.co.in/webhp?ei=6cLkV8utKMnp0ASg5L7oAw&yv=2&rct=j");
sendIntent.setType("text/plain");
sendIntent.setPackage("com.whatsapp");
startActivity(sendIntent);
答案 1 :(得分:0)
我知道这已经很老了,但将网址(作为文字)连接到文本只对我有用