Show my app icon infront off contact

允我心安 提交于 2019-12-08 07:26:16

问题


As in WhatsApp, if you click on a name to call, down the list you will find the WhatsApp logo in front of the number if you want to txt using WhatsApp.
Can we add the easyPhoneCard in that list, so the user can directly call using that option without clicking on the prompt to call.


回答1:


You have to add in your manifest some rules.

In that way, Android will be able to list your application as compatible with a specific action (here is call action)

I think it will be something like

<intent-filter>
    <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>

(add this in your activity node that will handle operations)



来源:https://stackoverflow.com/questions/19808133/show-my-app-icon-infront-off-contact

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!