1

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

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

或者有什么好的api。

请帮忙。

4

1 回答 1

0
private void startVideoCall(String number){

    Intent intent = new Intent("com.android.phone.videocall",Uri.parse("tel:"+number));
    intent.putExtra("videocall", true);
    startActivity(intent);
}
于 2011-08-05T09:01:30.907 回答