Android添加调用选项

时间:2017-07-20 10:23:23

标签: android menu menuitem phone-call

如何添加自己的应用程序作为通话选项(如Whatsapp,Viber)? enter image description here

similar question

另一个问题(类似)并没有解决我的问题,我的应用程序没有在联系方式的选项中显示。

1 个答案:

答案 0 :(得分:0)

  1. 要做到这一点,您需要为清单文件中的应用程序定义意图过滤器
  2. 添加呼叫电话权限

    <intent-filter>
        <action android:name="android.intent.action.CALL_PRIVILEGED" />                
        <category android:name="android.intent.category.LAUNCHER" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:scheme="tel" />
     </intent-filter>