问题描述
我创建了一个应用程序,当该应用程序在后台打开时,它将在用户结束拨出电话后发送WhatsApp消息。但它不起作用。当用户结束通话并再次打开我的应用程序(即应用程序进入前台)时,它将重定向到WhatsApp。请告诉我解决方法。
Intent intent = new Intent(Intent.ACTION_VIEW);
try {
String url = "https://api.whatsapp.com/send?phone=" + callModelList.get(i).getNumber().substring(1) + "&text=Hello There..!";
intent.setPackage("com.whatsapp");
intent.setData(Uri.parse(url));
if (intent.resolveActivity(packageManager) != null) {
startActivity(intent);
}
} catch (Exception e) {
e.printstacktrace();
}```
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)