首页 > 解决方案 > 当设备上还有 WhatsApp Business 时,如何将我的应用程序与 WhatsApp 关联?

问题描述

WhatsApp Business 代替 WhatsApp 打开。如何仅链接到 WhatsApp?这是代码:

Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("https://api.whatsapp.com/send phone="+phonestr+"&text="+messagestr));

startActivity(i);
               

标签: javaandroidwhatsapp

解决方案


您可以使用 设置要处理意图的目标包(应用程序 ID)Intent.setPackage。但是,如果未安装该软件包,它将引发异常,因此请记住也要处理该异常。

Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("https://api.whatsapp.com/send phone="+phonestr+"&text="+messagestr));

i.setPackage("com.whatsapp");

startActivity(i);
               

此外,您可以在获得ActivityNotFound异常后尝试不同的包。例如尝试 WhatsApp,如果它抛出异常,然后尝试 WhatsApp Business 或其他


推荐阅读