我是这个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,但我无法启动电话..请帮助我,我错过了什么.. !!
答案 0 :(得分:1)
尝试此操作,以便对特定用户进行视频通话:
Intent sky = new Intent("android.intent.action.VIEW");
sky.setData(Uri.parse("skype:" + "UserName"+ "?call&video=true"));
startActivity(sky);