如何从我的Android应用程序在WhatsApp中打开群组

时间:2019-02-04 14:24:51

标签: android android-intent whatsapp whatsapi

我使用此代码在WhatsApp中加入群组,但是如果我已经加入群组,那么在打开后我会收到我已经加入群组的祝酒词。 刚开小组怎么不开烤面包的小组?

Intent intentWhatsAppGroup = new Intent(Intent.ACTION_VIEW); Uri uri =
Uri.parse("whatsapp://chat?code=***GroupID***");
intentWhatsAppGroup.setData(uri);
intentWhatsAppGroup.setPackage("com.whatsapp");
startActivity(intentWhatsAppGroup);

1 个答案:

答案 0 :(得分:0)

您必须使用组whatsapp链接。在您的代码中,必须有一个用户可以粘贴组链接的地方,然后在您的代码中,更改解析Uri的行,如

Uri.parse("https://chat.whatsapp.com/<group_link>");