简体   繁体   中英

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.

Or are there any good api's for it.

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);
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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