本文介绍了如何通过Android应用程序进行视频通话的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想激活移动电话中的视频通话选项.我有进行简单语音通话的代码:

I want to activate Video call option exist in the Mobile.I have code to make Simple voice call:

Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);

可以工作.但是我不知道如何使视频通话插入简单语音通话.任何人都可以帮助我实现这一目标.

在此先谢谢您.

and it works.But i don''t know how to make Video call insted of Simple Voice Call.Can any one help me to achive this.

Thanks in Advance.

推荐答案


这篇关于如何通过Android应用程序进行视频通话的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-03 17:57