Sending message through WhatsApp By intent

后端 未结 2 1554
时光取名叫无心
时光取名叫无心 2020-12-03 04:05

How I can send massage from my app to Special number in whatsapp , I know this code to share massage to group or contact on whatsapp

Intent waIntent = new In         


        
2条回答
  •  遥遥无期
    2020-12-03 04:33

    you can use this code for sending data to perticuler a number

    void openWhatsappContact(String number) {
    Uri uri = Uri.parse("smsto:" + number);
    Intent i = new Intent(Intent.ACTION_SENDTO, uri);
    i.setPackage("com.whatsapp");  
    startActivity(Intent.createChooser(i, ""));}
    

    thats realy works for me enjoy your code:)

提交回复
热议问题