2014-08-29 372 views
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); 
    } 

非常感謝您的幫助。

回答

0

嘗試使用畢加索

Picasso.with(getApplicationContext()) 
       .load(Uri.parse(photoUri)).noFade() 
       .into(imageView); 
+0

謝謝您的回答這個

public void getContacts(ContentResolver cr) { Cursor cursor = cr.query( ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null, null, null); while (cursor.moveToNext()) { String name = cursor .getString(cursor .getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME)); String photoUri = cursor .getString(cursor .getColumnIndex(ContactsContract.CommonDataKinds.Phone.PHOTO_URI)); friendsListitem = new FriendsListitem(name, photoUri, phoneNumber); arrayListFriends.add(friendsListitem); } cursor.close();// close cursor } 

負荷圖像。但我會試着理解我的錯。 對於同一聯繫人,我有不同的照片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