检查消息是否已通过 whatsapp 成功发送
Check if message was succesfully sent via whatsapp
美好的一天,
我正在构建一个 android 应用程序,具有通过 whatsapp 共享短信的功能。这是我的代码:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT, message.toString());
intent.setType("text/plain");
intent.setPackage("com.whatsapp");
startActivity(Intent.createChooser(intent,""));
代码有效,我可以通过选择联系人并在 whatsapp 中按发送按钮来分享消息。
我唯一的问题是我需要从我的 activity 返回并且必须知道消息是否已成功发送。
有什么想法吗?
提前致谢。
whether the message was successfully sent or not.
答案是否因为WhatsApp没有任何api.
美好的一天,
我正在构建一个 android 应用程序,具有通过 whatsapp 共享短信的功能。这是我的代码:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT, message.toString());
intent.setType("text/plain");
intent.setPackage("com.whatsapp");
startActivity(Intent.createChooser(intent,""));
代码有效,我可以通过选择联系人并在 whatsapp 中按发送按钮来分享消息。
我唯一的问题是我需要从我的 activity 返回并且必须知道消息是否已成功发送。
有什么想法吗?
提前致谢。
whether the message was successfully sent or not.
答案是否因为WhatsApp没有任何api.