android - Google 的 Android Duo 应用程序支持哪些 Intent 或 API?

标签 android android-intent google-duo

我们可以通过 Intent 通过 Google Duo 开始新的视频通话吗? 我们可以启动到应用内的任何特定屏幕吗?

我们目前支持从我们的应用程序启动环聊,我们也想添加对 Duo 的支持。

最佳答案

在 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)

关于android - Google 的 Android Duo 应用程序支持哪些 Intent 或 API?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54631045/

相关文章:

java - 了解Android中的R类

android - Admob 实时广告未在我的应用程序中显示,同时测试广告显示

android - 显示联系人后后退按钮不起作用

android - 使用 Intent.ACTION_OPEN_DOCUMENT_TREE 时的起始路径

android - 我如何在 AsyncTask 中从 onPostExecute 发回数据?

android - 使用 Intent 在环聊或 Duo 中发起视频通话?

Android 将当前包的签名与 debug.keystore 进行比较

android - 在自定义 ListView 中获取 View

android - Google 的 Android Duo 应用程序支持哪些 Intent 或 API?