gpt4 book ai didi

android - 如何从另一个 Android 应用程序通过 Skype 视频调用用户?

转载 作者:行者123 更新时间:2023-11-30 03:09:10 26 4
gpt4 key购买 nike

我是这个 android 应用程序开发的新手,我正在学习。这个问题可能看起来很简单,但我找不到解决方案。我正在发布我的代码..

    Intent skype = new Intent("android.intent.ACTION_VIEW");
skype.setClassName("com.skype.raider", "com.skype.raider.Main");
skype.setData(Uri.parse("skype:echo123?call"));
this.startActivity(skype);

我是通过链接 Launch Skype from an App Programmatically & Pass Number - Android 得到的.我已经尝试了该页面上的所有内容。从上面的代码中,我可以启动 Skype,但无法启动通话。请帮我解决我遗漏的问题。!!

最佳答案

试试这个,对特定用户进行视频通话:

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

关于android - 如何从另一个 Android 应用程序通过 Skype 视频调用用户?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21283915/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com