这里我试图将消息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