我正在尝试从主屏幕小部件显示快速联系人徽章,该小部件以网格布局显示最喜欢的联系人图片。我在这里查看了提示,但我仍然无法弄清楚。
当我点击一个联系人时,我总是收到以下错误:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.gridwidget/com.example.gridwidget.ContactBadge}: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.android.contacts.action.QUICK_CONTACT
尽管我正在调用“ContactsContract.QuickContact.showQuickContact();” 从一个活动。
这种意图导致了问题:com.android.contacts.action.QUICK_CONTACT
我试图将它添加到我的清单文件中但没有成功:
<activity
android:name="com.example.gridwidget.ContactBadge"
android:label="@string/title_activity_contact_badge"
android:theme="@android:style/Theme.NoDisplay" >
<intent-filter>
<action android:name="com.android.contacts.action.QUICK_CONTACT" />
<action android:name="com.example.gridwidget.BADGE_ACTION" />
</intent-filter>
</activity>
有什么建议吗?因为我正在展示一个集合,所以我使用了这里RemoteViewsService
描述的模式
谢谢