【发布时间】:2022-11-11 04:48:56
【问题描述】:
当有人在我的应用程序中点击手机号码时,我想打开 Truecaller 应用程序。是否有任何特定的意图来打开像 Whatsapp 这样的 Truecaller 应用程序?
Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:" + phoneNumber));
context.startActivity(intent);
我使用此代码打开拨号器,这对我来说没有那么有效。
如果有任何其他选项可以打开 Truecaller 应用程序,请帮助我。
【问题讨论】: