【发布时间】:2015-01-22 11:11:56
【问题描述】:
我使用 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);
我想通过点击一个可能的按钮来结束这次通话?
【问题讨论】: