ActivityNotFoundException试图加载Contacts ContentProvider?

时间:2010-09-13 15:39:12

标签: android android-intent

这很奇怪。我在某些设备上看到此崩溃报告:

android.content.ActivityNotFoundException:
   No Activity found to handle Intent {
     act=android.intent.action.PICK dat=content://com.android.contacts/contacts }

产生此错误的意图是:

Intent intent = new Intent(Intent.ACTION_PICK, People.CONTENT_URI); // pre-Eclair

或者:

Intent intent = new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI); // post-Eclair

该设备只是报告为“Droid”,但我不知道操作系统版本。

1 个答案:

答案 0 :(得分:1)

要获得联系我使用以下代码:

Intent intent = new Intent ( Intent.ACTION_GET_CONTENT );
intent.setType ( ContactsContract.Contacts.CONTENT_ITEM_TYPE );
startActivityForResult ( intent, 1 );