当 WhatsApp Business 也在设备上时,如何使用 WhatsApp link 我的应用程序?
How to link my app with WhatsApp when WhatsApp Business is also on the device?
WhatsApp Business 代替 WhatsApp 打开。我怎样才能 link 只到 WhatsApp?
这是代码:
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("https://api.whatsapp.com/send phone="+phonestr+"&text="+messagestr));
startActivity(i);
您可以使用 Intent.setPackage
设置要处理意图的目标包(应用程序 ID)。
但是,如果未安装该软件包,它将引发异常,因此请记住也要处理它。
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 或其他
WhatsApp Business 代替 WhatsApp 打开。我怎样才能 link 只到 WhatsApp? 这是代码:
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("https://api.whatsapp.com/send phone="+phonestr+"&text="+messagestr));
startActivity(i);
您可以使用 Intent.setPackage
设置要处理意图的目标包(应用程序 ID)。
但是,如果未安装该软件包,它将引发异常,因此请记住也要处理它。
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 或其他