如在 中WhatsApp
,如果您单击要呼叫的名称,WhatsApp
如果您想使用 txt,在列表中您会在号码前面找到徽标WhatsApp
。
我们可以easyPhoneCard
在该列表中添加 ,以便用户可以使用该选项直接调用,而无需单击提示进行调用。
问问题
1201 次
1 回答
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>
(将其添加到将处理操作的活动节点中)
于 2013-11-06T09:31:19.067 回答