如何以编程方式从我的应用程序发送特定消息到whatsapp中的特定电话号码

时间:2015-01-07 06:56:27

标签: android whatsapp

这里我试图将消息hello world发送给一个数字。 这是我的代码片段:

public void openWhatsappContact(String number) {

    Uri uri = Uri.parse("smsto:" + number);

    Intent i = new Intent(Intent.ACTION_SENDTO,uri);

    i.setType("text/plain");

    i.putExtra(Intent.EXTRA_TEXT, "Hello World");

    i.putExtra("chat",true);

    i.setPackage("com.whatsapp");  

    startActivity(Intent.createChooser(i, ""));

}

但显示错误:

No applications can perform this action 

0 个答案:

没有答案