Android:从我的应用激活视频通话

Android: Activate video call from my app

我正在尝试通过我的应用程序从一部手机到另一部手机进行视频通话。为此,我遵循了网上提供的不同方法,比如

  1. java2s i included all files as they suggested in the description (Above the download header) but they forgot to include OnCameraViewListener file. So, i'm not able to run this project (For my code please see this link)
  2. 我休假了 link1, link2 很多,但对我没有任何帮助。

所以,任何人都可以帮助我从 android 应用程序

进行视频通话

我试图通过我的应用进行视频通话,但目前无法实现,所以我使用了 Skype

代码:

Intent skypeVideo = new Intent("android.intent.action.VIEW");
skypeVideo.setData(Uri.parse("skype:" + "endUserSkypeId" + "?call&video=true"));
context.startActivity(skypeVideo);