在联系人面前显示我的应用图标

时间:2013-11-06 09:23:04

标签: java android android-contacts

WhatsApp一样,如果您点击要拨打的姓名,则在列表中,如果您想使用WhatsApp txt,则会在号码前面找到WhatsApp徽标。
我们可以在该列表中添加easyPhoneCard,因此用户可以直接使用该选项进行呼叫,而无需单击要呼叫的提示。

1 个答案:

答案 0 :(得分:1)

您必须在清单中添加一些规则。

通过这种方式,Android可以将您的应用程序列为与特定操作兼容(这里是调用操作)

我认为它会像

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

(在您将处理操作的活动节点中添加此内容)