Android 内置视频通话

发布于 2024-11-02 08:47:31 字数 149 浏览 0 评论 0原文

是的,我知道这个问题已被问过多次,但没有令人信服的答案。

我不想做任何复杂的事情,只是想知道是否有任何方法可以调用内置的 Android 视频通话功能,这可能与我们按意图进行语音通话的方式相同。

或者有什么好的api可以用吗?

请帮忙。

Yes i know this question has been asked several times but there is no convincing answer.

I dont want to make any complicated thing just i want to know if there is any way to call inbuilt android video calling functionality may be the same way we do voice call by intent.

Or are there any good api's for it.

please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

池予 2024-11-09 08:47:31
private void startVideoCall(String number){

    Intent intent = new Intent("com.android.phone.videocall",Uri.parse("tel:"+number));
    intent.putExtra("videocall", true);
    startActivity(intent);
}
private void startVideoCall(String number){

    Intent intent = new Intent("com.android.phone.videocall",Uri.parse("tel:"+number));
    intent.putExtra("videocall", true);
    startActivity(intent);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文