skype call using username in android

后端 未结 1 1219
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-17 01:11

I already know to skype call using phone number but i can\'t do skype call using skype username please help me thanks

please see my code skype call when using phone

相关标签:
1条回答
  • 2021-01-17 01:41

    You can call another skype user like this:

    Intent skype = new Intent("android.intent.action.VIEW");
    skype.setData(Uri.parse("skype:" + user_name));
    startActivity(skype);
    

    For video calls:

    Uri.parse("skype:" + user_name + "?call&video=true")
    
    0 讨论(0)
提交回复
热议问题