我写了一个短信应用程序,在概览中显示我的联系人的联系人照片。
获取“正常”照片没问题:
Uri cu = ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId);
final InputStream input = Contacts.openContactPhotoInputStream(getContext().getContentResolver(), cu);
return BitmapFactory.decodeStream(input);
问题是:例如 facebook 提供的联系人照片不存在,我怎样才能获得这些“外部”照片?