2010-09-13 16 views
9

Bu garip bir şey.ActivityNotFoundException Kişileri yüklemeye çalışıyor ContentProvider?

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

bu hata üretir niyet eder:

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

Veya:

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

cihaz basitçe "Droid" olarak bildirilir bazı cihazlarda bu Çökme raporu görüyorum ama işletim sistemi sürümünü bilmiyorum.

+0

Bu cevaplar alakalı gözükür: http://stackoverflow.com/questions/3547118/accessing-the-phonebook-on-galaxy-s-crashes -the-app, http://stackoverflow.com/questions/866769/how-to-call-android-contacts-list ve http://stackoverflow.com/questions/2792166/edit-contact-code-worked- in-1-6-ama-iş-üzerinde-droid-2-1 –

+0

Lütfen bu bağlantı üzerinden gidin http://developer.android.com/guide/topics/providers/contacts-provider.html –

cevap

1

Ben aşağıdaki kodu kullanabilirsiniz bir kişiyi almak için:

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