Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是的,我知道这个问题已经被问过好几次了,但没有令人信服的答案。
我不想做任何复杂的事情只是我想知道是否有任何方法可以调用内置的 android 视频通话功能可能与我们通过意图进行语音通话的方式相同。
或者有什么好的api。
请帮忙。
private void startVideoCall(String number){ Intent intent = new Intent("com.android.phone.videocall",Uri.parse("tel:"+number)); intent.putExtra("videocall", true); startActivity(intent); }