initiateSkypeUri(context, "skype:"+ skypeID+"?call&video=true");
public void initiateSkypeUri(Context myContext, String mySkypeUri) {
// Make sure the Skype for Android client is installed
if (!isInstalled(myContext, "com.skype.raider")) {
goToMarket(myContext, "com.skype.raider");
return;
}
// Create the Intent from our Skype URI
Uri skypeUri = Uri.parse(mySkypeUri);
Intent myIntent = new Intent(Intent.ACTION_VIEW, skypeUri);
// Restrict the Intent to being handled by the Skype for Android client
// only
myIntent.setComponent(new ComponentName("com.skype.raider",
"com.skype.raider.Main"));
myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
myContext.startActivity(myIntent);
return;
}
这就是我使用Skype拨打电话所做的。我需要在Lync 2013中做同样的事情。我怎样才能做到这一点?
提前致谢。