ActivityNotFoundException试图加载Contacts ContentProvider?

seh*_*ugg 9 android android-intent

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

android.content.ActivityNotFoundException:
   No Activity found to handle Intent {
     act=android.intent.action.PICK dat=content://com.android.contacts/contacts }
Run Code Online (Sandbox Code Playgroud)

产生此错误的意图是:

Intent intent = new Intent(Intent.ACTION_PICK, People.CONTENT_URI); // pre-Eclair
Run Code Online (Sandbox Code Playgroud)

要么:

Intent intent = new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI); // post-Eclair
Run Code Online (Sandbox Code Playgroud)

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

And*_*ron 1

为了获得联系方式,我使用以下代码:

Intent intent = new Intent ( Intent.ACTION_GET_CONTENT );
intent.setType ( ContactsContract.Contacts.CONTENT_ITEM_TYPE );
startActivityForResult ( intent, 1 );
Run Code Online (Sandbox Code Playgroud)