我们可以通过意图通过Google Duo开始新的视频通话吗? 我们可以在应用内的任何特定屏幕上启动吗?
我们目前支持从我们的应用中发布环聊,我们也希望添加Duo支持。
答案 0 :(得分:1)
在truecaller源代码中找到了这个。无法上班,但希望它有所帮助。我正在使用Kotlin。
val I = Intent("com.google.android.apps.tachyon.action.CALL")
i.'package' = "com.google.android.apps.tachyon"
i.data = Uri.parse("tel: $phone") // phone is the phone number your to a function
i.putExtra(com.google.android.apps.tachyon.extra.IS_AUDIO_ONLY, false)
startActivity(i)
答案 1 :(得分:0)
使用: -
Intent intent = getPackageManager().getLaunchIntentForPackage("com.google.android.apps.tachyon");
startActivity(intent);