0

我尝试将我的应用程序添加到“使用完整操作”中以进行呼叫联系操作。如文档和其他答案中所述,我将以下意图过滤器添加到清单中

  <intent-filter android:icon="@drawable/ic_launcher">
    <action android:name="android.intent.action.CALL" />
    <category android:name="android.intent.category.DEFAULT" />
    <action android:name="android.intent.action.CALL_PRIVILEGED" />
    <data android:scheme="tel" />
  </intent-filter>

它适用于三星 s2 和 s3,但不适用于摩托罗拉 Xoom 设备。我的申请没有出现在列表中。谁能给我一个提示如何修复或解决它?

4

1 回答 1

0

没有修复或解决方法,因为 XOOM 不是电话,因此无法拨打电话,因此没有可供您显示的列表。

于 2013-02-12T13:01:47.743 回答