How to open Whatsapp group by clicking a button?
问题 I made a simple phone directory and was able to open the Whatsapp contacts by clicking a button. Here is the sample code: Intent intentWhatsapp = new Intent("android.intent.action.MAIN"); intentWhatsapp.setAction(Intent.ACTION_VIEW); String url = "https://api.whatsapp.com/send?phone=" + "90xxxxxxxx"; intentWhatsapp.setData(Uri.parse(url)); intentWhatsapp.setPackage("com.whatsapp"); startActivity(intentWhatsapp);} How can I open the Whatsapp group by clicking a button in android? Hope to give