How to include my application as a dialing option when calling from the addressbook?
I need to include additional dialing options in the menu appearing after pressing "Call" over a contact (Screenshot).
I'm trying to do i开发者_开发技巧t with action-filters for the DIAL and CALL intents without any success.
I know this is possible because Skype does it (Screenshot). Anybody knows how to implement it?
I think the Intent
you're looking for is android.intent.action.CALL_PRIVILEGED
. Have a look at the complete Skype manifest.
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
精彩评论