Sending message through WhatsApp

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

    As the documentation says you can just use an URL like:

    https://wa.me/15551234567

    Where the last segment is the number in in E164 Format

    Uri uri = Uri.parse("https://wa.me/15551234567");
    Intent intent = new Intent(Intent.ACTION_VIEW, uri);
    startActivity(intent);
    

提交回复
热议问题