是的我知道这个问题已被问过几次,但没有令人信服的答案。
我不想做任何复杂的事情只是我想知道是否有任何方式调用内置的Android视频通话功能可能与我们通过意图进行语音通话的方式相同。
或者它有什么好的api。
请帮忙。
答案 0 :(得分:0)
private void startVideoCall(String number){
Intent intent = new Intent("com.android.phone.videocall",Uri.parse("tel:"+number));
intent.putExtra("videocall", true);
startActivity(intent);
}