意图从 Android 个应用程序打开 Truecaller 应用程序

Intent to open Truecaller App from Android App

我想在有人点击我的应用程序中的手机号码时打开 Truecaller 应用程序。是否有任何特定的 Intent 可以打开 Whatsapp 之类的 Truecaller 应用程序?

Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:" + phoneNumber));
context.startActivity(intent);

我使用此代码打开拨号器,但对我来说效果不佳。

如果有任何其他选项可以打开 Truecaller 应用程序,请帮助我。

您错过了设置 Truecaller 应用程序包名称,只需使用下面的代码 (KOTLIN)

val intent = Intent(Intent.ACTION_DIAL, Uri.fromParts("tel", "PHONE NUMBER", null))

        intent.setPackage("com.truecaller")
        intent?.let { startActivity(it) }