【问题标题】:Intent to open Truecaller App from Android App打算从 Android 应用程序打开 Truecaller 应用程序
【发布时间】: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 应用程序,请帮助我。

【问题讨论】:

    标签: android android-intent


    【解决方案1】:

    您错过了设置 Truecaller 应用程序包名称

    val intent = Intent(Intent.ACTION_DIAL, Uri.fromParts("tel", "PHONE NUMBER", null))
    
            intent.setPackage("com.truecaller")
            intent?.let { startActivity(it) }
    
          
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2013-10-07
      • 2011-07-24
      • 1970-01-01
      • 1970-01-01
      • 2018-11-16
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多