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でも同じことをする必要があります。どうすればこれを達成できますか?
前もって感謝します。