使用 android 应用程序在 Skype 中进行电话会议

Conference Calls in Skype using android application

我正在尝试通过我的应用程序拨打 Skype 电话。我通过这个代码片段成功了

        Intent skypeIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("skype:" + "skypeName" + "?call"));
        skypeIntent.setComponent(new ComponentName("com.skype.raider", "com.skype.raider.Main"));
        skypeIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        startActivity(skypeIntent);

以上代码只能为 1 个用户进行 Skype 通话。但是我怎样才能实现电话会议呢? 我用谷歌搜索了一下,发现我们需要使用“;”进行电话会议,但它只是在不进行呼叫的情况下创建一个组。

请指导我完成

谢谢

API 参考说明您无法在 Android 版本的 Skype 中开始群组通话。我不知道为什么。

Mobile Skype clients (iOS and Android) do not support initiating/hosting conference calls.

Skype URI API Reference