0
我需要您的幫助才能獲取我的聯繫人照片。Android沒有找到聯繫人照片
我收到我的所有聯繫人的生日。現在我必須試着像的人的照片:
...
while (contactCursor.moveToNext()) {
Contact c = Contact.createContact(contactCursor);
c.setPhoto(getContactPhoto(contentResolver, c.getId()));
contacts.add(c);
}
..
private static InputStream getContactPhoto(ContentResolver contentResolver, long contactId) {
Uri contactUri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactId);
Uri photoUri = Uri.withAppendedPath(contactUri, ContactsContract.Contacts.Photo.CONTENT_DIRECTORY);
Cursor cursor = contentResolver.query(photoUri, new String[] {ContactsContract.Contacts.Photo.PHOTO}, null, null, null);
if (cursor == null) {
return null;
}
try {
if (cursor.moveToFirst()) {
byte[] data = cursor.getBlob(0);
if (data != null) {
return new ByteArrayInputStream(data);
}
}
} finally {
cursor.close();
}
return null;
}
我的問題是現在我不能接收聯繫人的任何照片(cursos大小= 0)。在手機上(Xperia Z1 Compact)絕對是聯繫照片。
我的目標是再設置這樣的照片:
if(contact.getPhoto() != null) {
Bitmap cPhoto = BitmapFactory.decodeStream(contact.getPhoto());
holder.photo.setImageBitmap(cPhoto);
} else {
ShapeDrawable d = new ShapeDrawable(new OvalShape());
d.getPaint().setColor(Color.BLUE);
d.setBounds(10, 10, 20, 20);
holder.photo.setImageDrawable(d);
}
非常感謝您的幫助。
謝謝您的回答這個
負荷圖像。但我會試着理解我的錯。 對於同一聯繫人,我有不同的照片URI: - getContactPhoto:photoUri is:content://com.android.contacts/contacts/9444/photo - contact property:ContactsContract.Contacts.PHOTO_URI is:content:// com .android.contacts/contacts/243/photo 所以我無法理解這些行爲。照片來自何處? Google,FB等? – bluepix 2014-08-29 15:11:46