我想通过whatsapp向多个联系人发送消息。我知道它可以通过whatsapp广播,但问题是我不知道如何通过代码实现它,在Android工作室。我搜索过它,但没有找到任何东西。有谁知道怎么做?
答案 0 :(得分:0)
这里我通过whatsapp将音频文件分享给多个联系人。
lblshare.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String valueofpathh = recordName.getText().toString();
File filee = new File(valueofpathh);
try {
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.setType("audio/*");
sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(filee));
startActivity(sendIntent);
} catch (NoSuchMethodError | IllegalArgumentException | NullPointerException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
});
我希望它可以帮助你理解。
这里valueOfPath是我的字符串,包含我的设备sdcard文件夹路径,所以我可以从该路径获取所有音频文件。
如果您只有要发送的消息文件,则更改意图类型:
sendIntent.setType("text/plain");
尝试查看此链接:
答案 1 :(得分:0)
要将消息从您的应用发送给WhatsApp中的多个联系人
String message = "Health worker uploaded a data";
Context context_new=this.getApplicationContext();
packageManager = context_new.getPackageManager();
Intent i = new Intent(Intent.ACTION_VIEW);
try {
//only message and ability to send message to multiple nos.
String url = "https://api.whatsapp.com/send?text=" + URLEncoder.encode(message, "UTF-8");
i.setPackage("com.whatsapp");
i.setData(Uri.parse(url));
if (i.resolveActivity(packageManager) != null) {
context_new.startActivity(i);
Log.d(TAG, "Watsapp message successful"+ "passed");
}
} catch (Exception e){
e.printStackTrace();
Log.d(TAG, "Watsapp message failed"+ "failed");
}