• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to get contact's photo for appwidget?

Hi!
I googled for some days and tested quite a few scripts to get contact's photo...
My last version:
public static Bitmap loadContactPhoto(Context context, String myph) {
ContentResolver cr=(ContentResolver) context.getContentResolver();
InputStream input = ContactsContract.Contacts.openContactPhotoInputStr eam(cr, Uri.parse("tel:" + myph));
return BitmapFactory.decodeStream(input);
}

The main problem is to define ContentResolver... If I use image from drawable, everything is ok!

remoteViews.setImageViewResource(R.id.ConButton,R. drawable.ConPhoto);

But I'd like to use contact's photo... Help please!
 

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones