How to include my application as a dialing option when calling from the addressbook?

后端 未结 2 1235
醉酒成梦
醉酒成梦 2021-01-13 11:53

I need to include additional dialing options in the menu appearing after pressing \"Call\" over a contact (Screenshot).

I\'m trying to do it with action-filters

相关标签:
2条回答
  • 2021-01-13 12:17

    I'd start here: using android dialer in 3rd party app

    And look through the Android dialer source to see what intents it uses

    Then, check the official Intent list:

    Which leads me to guess you need to at least include:

    • VIEW
    • DIAL
    • CALL

    in category DEFAULT

    0 讨论(0)
  • 2021-01-13 12:24

    I think the Intent you're looking for is android.intent.action.CALL_PRIVILEGED. Have a look at the complete Skype manifest.

    0 讨论(0)
提交回复
热议问题