2016-02-09 51 views
1

在點擊與skypeID的文本,應用程序應啓動Skype的業務(lync),並開始與指定的skypeID呼叫,我能夠啓動應用程序但不能自動啓動呼叫選項?我能夠在Skype中做到這一點,但不能在Skype中做生意(lync),您能否建議我怎麼做? TIAAndroid lauch skype用於商業和打電話與指定的skypeID

+0

這可能有所幫助:https://msdn.microsoft.com/en-us/skype/skype-for-business-uris/androidcall –

回答

0
public static void skype(String number, Context ctx) { 
    try { 
     //Intent sky = new Intent("android.intent.action.CALL_PRIVILEGED"); 
     //the above line tries to create an intent for which the skype app doesn't supply public api 

      Intent sky = new Intent("android.intent.action.VIEW"); 
     sky.setData(Uri.parse("skype:" + number)); 
     Log.d("UTILS", "tel:" + number); 
     ctx.startActivity(sky); 
    } catch (ActivityNotFoundException e) { 
     Log.e("SKYPE CALL", "Skype failed", e); 
    } 

} 

我沒有試過這個,請試試看。爲更多的信息去這個SO link

+0

嗨,這工作正常的Skype,但不用於商業Skype(lync)。 – pAr

+0

哦,我會檢​​查,並更新如果我得到的東西:) – droidev

相關問題