我试图从QuickContactBadge启动我的活动。我已经设法在我的清单中使用以下内容添加了一个图标:
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="vnd.android.cursor.item/name"/>
</intent-filter>
但有两个问题:
当我点击图标时,会显示联系人姓名(我怀疑会将相同的内容传递给活动)。我想要显示电话号码。我尝试过以下但没有运气:&#34; vnd.android.cursor.item / phone&#34;,&#34; vnd.android.cursor.dir / phone&#34;,&#34; vnd。 android.cursor.item / phone_v2&#34;,&#34; vnd.android.cursor.dir / phone_v2&#34;
如何更改徽章中显示的图标?
我找到了类似的帖子here,但它并没有提供令人满意的解决方案。