我有一个ImageView组件,想要从联系人加载图像
我有这个URI
content://com.android.contacts/contacts/799/photo
我该怎么办?
答案 0 :(得分:1)
如果查看here,您可以找到如何获取图像的输入流。
然后,执行BitmapFactory.decodeStream(stream)
以获取位图。
要将其置于视图中,请执行myImageView.setImageBitmap(bitmap)
答案 1 :(得分:0)
试试如下:
public Uri getContactImage() {
try {
Cursor cur = this.ctx.getContentResolver().query(
ContactsContract.Data.CONTENT_URI,
null,
ContactsContract.Data.CONTACT_ID + "=" + this.getId() + " AND "
+ ContactsContract.Data.MIMETYPE + "='"
+ ContactsContract.CommonDataKinds.Photo.CONTENT_ITEM_TYPE + "'", null,
null);
if (cur != null) {
if (!cur.moveToFirst()) {
return null; // no photo
}
} else {
return null; // error in cursor process
}
} catch (Exception e) {
e.printStackTrace();
return null;
}
Uri person = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, Long
.parseLong(getId()));
return Uri.withAppendedPath(person, ContactsContract.Contacts.Photo.CONTENT_DIRECTORY);
}
使用以下方法:
Uri u = getContactImage();
if (u != null) {
mImageView.setImageURI(u);
} else {
mImageView.setImageResource(R.drawable.ic_launcher);
}