Sending message through WhatsApp

前端 未结 23 2633
萌比男神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:32

    use this singleline code use to Sending message through WhatsApp

    //NOTE : please use with country code first 2digits without plus signed
    try {
          String mobile = "911234567890";
          String msg = "Its Working";
          startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://api.whatsapp.com/send?phone=" + mobile + "&text=" + msg)));
          }catch (Exception e){
            //whatsapp app not install
         }
    

提交回复
热议问题