gpt4 book ai didi

android - 通过 WhatsApp 分享文本 + URL

转载 作者:行者123 更新时间:2023-11-30 02:28:47 25 4
gpt4 key购买 nike

我想通过 WhatsApp 分享文本和 URL

我查看了几个链接,但它只有共享文本功能。

我如何共享 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.");
}

最佳答案

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);

关于android - 通过 WhatsApp 分享文本 + URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27567907/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com