简体   繁体   English

Android内建视讯通话

[英]Android inbuilt Video Calling

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. 我不想做任何复杂的事情,只是我想知道是否有任何方法可以调用内置的android视频通话功能,可能与我们通过意图进行语音通话的方法相同。

Or are there any good api's for it. 还是有任何好的api。

please help. 请帮忙。

private void startVideoCall(String number){

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM