适用于Android的Google Duo应用程序支持哪些意图或api? [英] what intents or apis does Google's Duo app for Android support?

查看:109
本文介绍了适用于Android的Google Duo应用程序支持哪些意图或api?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们可以通过意图通过Google Duo发起新的视频通话吗? 我们可以启动到应用程序中的任何特定屏幕吗?

Can we start a new video call via Google Duo via intent? Can we launch into any specific screen within the app?

我们目前支持从我们的应用启动环聊,并且我们也希望添加Duo支持.

We currently have support for launching Hangouts from our app, and we would like to add Duo support as well.

推荐答案

在truecaller源代码中找到了这一点.无法上班,但希望能有所帮助.我正在使用Kotlin.

Found this in the truecaller source code. Can't get to work, but hope it helps. I'm using 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 Duo应用程序支持哪些意图或api?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆