终止Skype视频通话Android

时间:2015-01-22 11:11:57

标签: android skype

我使用此代码使用skype api发起了一个调用:

Intent skype = new Intent("android.intent.action.VIEW");

            skype.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
            skype.setData(Uri.parse("skype:" + user_name +"?call&video=true"));     
            startActivity(skype);

我想通过单击可能的按钮来完成此调用吗?

1 个答案:

答案 0 :(得分:0)

我认为这很简单:

if (skype.ActiveCalls.Count > 0)
{
    skype.ActiveCalls[1].Finish();
}

只需将该代码放入按钮侦听器部分即可。