Sending message through WhatsApp

前端 未结 23 2502
萌比男神i
萌比男神i 2020-11-22 09:42

Since I found some older posts, that tell that whatsapp doesn\'t support this, I was wondering if something had changed and if there is a way to open a whatsapp \'chat\' wit

23条回答
  •  遥遥无期
    2020-11-22 10:20

    This is what worked for me :

            Uri uri = Uri.parse("https://api.whatsapp.com/send?phone=" + "" + "&text=" + "Hello WhatsApp!!");
            Intent sendIntent = new Intent(Intent.ACTION_VIEW, uri);
            startActivity(sendIntent);
    

提交回复
热议问题