Send message to specific contact through whatsapp from another app

前端 未结 6 2225
无人共我
无人共我 2021-02-20 07:58

Is it possible to send message to a specific contact through whatsapp directly from another app? I know the contact ID. I don\'t want to open whatsapp

6条回答
  •  闹比i
    闹比i (楼主)
    2021-02-20 09:01

    Let me know if it works for you,

    Uri mUri = Uri.parse("smsto:+9876543210");
    Intent mIntent = new Intent(Intent.ACTION_SENDTO, mUri);
    mIntent.setPackage("com.whatsapp");
    mIntent.putExtra("sms_body", "The text goes here");
    mIntent.putExtra("chat",true);
    startActivity(mIntent);
    

提交回复
热议问题