使用一个Intent在WA中发送2条或更多条消息

时间:2013-08-31 21:38:17

标签: android android-intent messages whatsapp

我知道如何制作一个Intent,用于在WhatsApp中发送消息:

public void onClickWhatsApp(View view) {
Intent waIntent = new Intent(Intent.ACTION_SEND);
waIntent.setType("text/plain");
String text = "YOUR TEXT HERE";
waIntent.setPackage("com.whatsapp");
if (waIntent != null) {
    waIntent.putExtra(Intent.EXTRA_TEXT, text);
    startActivity(Intent.createChooser(waIntent, "Share with"));
} else {
    Toast.makeText(this, "WhatsApp not Installed", Toast.LENGTH_SHORT).show();
}

}

但..我有兴趣以同样的意图发送2条或更多条消息。 ¿我该怎么做?

0 个答案:

没有答案