【发布时间】:2014-01-22 13:12:39
【问题描述】:
我对这个 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,但无法启动通话..请帮助我解决我错过的问题..!!
【问题讨论】: