Skype开始拨号并在2秒后挂起 - Android

时间:2012-07-18 13:03:48

标签: java android android-intent skype

我在Skype台设备上安装了2.8.0.920Android)。第一台设备配备Android 2.2,第二台配备4.04。

当我通过执行以下代码发起呼叫时......

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:PassportCard"));                 
act.startActivity(skype_intent);

...... Skype开始拨打在2秒后挂断。

但是,如果我用之前的替换当前的(2.8.0.920)Skype版本,代码就可以正常工作。

这是为什么?有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

这是我找到的解决方案;

In Java file:
Intent iskype = new Intent("android.intent.action.VIEW"); 
iskype.setData(Uri.parse("skype:PassportCard")); 
act.startActivity(iskype);

In AndroidManifast.xml
<intent-filter> 
      <category android:name="android.intent.category.DEFAULT" />
      <action android:name="android.intent.action.VIEW" />                     
      <data android:scheme="skype" /> 
</intent-filter>