【问题标题】:skype call using username in android在android中使用用户名进行Skype通话
【发布时间】:2013-01-12 13:53:52
【问题描述】:

我已经知道使用电话号码进行 Skype 通话,但我无法使用 Skype 用户名进行 Skype 通话,请帮助我,谢谢

使用电话号码时请查看我的代码Skype通话:

Intent skype_intent = new Intent("android.intent.action.CALL_PRIVILEGED");
    skype_intent.setClassName("com.skype.raider","com.skype.raider.Main");
    skype_intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
    skype_intent.setData(Uri.parse("tel:+91//phone number")); 
    startActivity(skype_intent);

【问题讨论】:

    标签: android skype


    【解决方案1】:

    您可以像这样呼叫另一个 Skype 用户:

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

    对于视频通话:

    Uri.parse("skype:" + user_name + "?call&video=true")
    

    【讨论】:

      猜你喜欢
      • 2011-04-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-09-05
      • 1970-01-01
      • 2019-07-03
      • 2013-10-02
      相关资源
      最近更新 更多