Quantcast
Viewing all articles
Browse latest Browse all 19

getting contact photo in imageview in a ListView

I’m using a cursurAdapter for the list view and this code is in the bindView: String number = getPhoneNumber(friendName, context); long contactID = getContactIDFromNumber(number, context); Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactID); InputStream input = ContactsContract.Contacts.openContactPhotoInputStream(context.getContentResolver(), uri); Bitmap bm = BitmapFactory.decodeStream(input); contactImageView.setImageBitmap(bm); i know it works fine since i used the same code in another activity in […]

The post getting contact photo in imageview in a ListView appeared first on BlogoSfera.


Viewing all articles
Browse latest Browse all 19

Trending Articles