通过意图打开whatsapp,在Android 11中不起作用
2022-09-04 05:51:41
意图打开Whatsapp无法在Android OS 11中工作,但在Android(OS)10设备上工作正常,它会在android 11设备上显示消息“Whatsapp应用程序未安装在您的手机中”。有人对此有解决方案吗?
String contact = "+91 9999999999"; // use country code with your phone number
String url = "https://api.whatsapp.com/send?phone=" + contact;
try {
PackageManager pm = context.getPackageManager();
pm.getPackageInfo("com.whatsapp", PackageManager.GET_ACTIVITIES);
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
context.startActivity(i);
} catch (PackageManager.NameNotFoundException e) {
Toast.makeText(mContext, "Whatsapp app not installed in your phone",Toast.LENGTH_LONG).show();
e.printStackTrace();
}