我使用以下代码分配给ImageView联系人图片:
mPhotoView = (ImageView) findViewById(R.id.photo);
mPhotoView.setImageURI(objItem.getPhotoUri());
如果联系人没有图像,则不执行任何操作,也不会出现错误。
如果没有图像,我想添加默认图像。因此,我需要检查图像是否已添加到视图中,或检查URI是否包含某些图像数据
我如何实现这一目标?
我将通过此设置默认图像:
mPhotoView.setImageResource(R.drawable.ic_contact_picture_2);
答案 0 :(得分:8)
如果您的目标设备运行的是Android 2.0 / 2.0.1 / 2.1,则必须使用以下选项查询ContactsContract.Data。CONTENT_URI:
Data.MIMETYPE + "='" + Photo.CONTENT_ITEM_TYPE
否则请查询Contacts.Photos。CONTENT_URI
由Pentium10编辑
作为参考,我在这里列出了我提出的方法(如果你仍然看到错误,请更新它):
public Uri getPhotoUri() {
Uri person = ContentUris.withAppendedId(
ContactsContract.Contacts.CONTENT_URI, Long.parseLong(getId()));
Uri photo = Uri.withAppendedPath(person,
ContactsContract.Contacts.Photo.CONTENT_DIRECTORY);
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
}
return photo;
}
答案 1 :(得分:0)
根据您的使用情况,可能还有另一个(更好?)选项。如果您有一个所有联系人的光标,并且您说,将它们绑定到列表视图,您只需尝试使用openContactPhotoInputStream检索照片,并检查是否为空。
InputStream stream = Contacts.openContactPhotoInputStream(context.getContentResolver(), lookupUri);
if (stream == null) {
//your logic here when no photo found
}
以下是任何可能偶然发现的人的快速示例:
import android.provider.ContactsContract.Contacts;
//Define someDefaultPhoto somewhere accessible
protected Bitmap getContactPhoto(Context context, Uri lookupUri) {
Bitmap resultPhoto;
InputStream stream;
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
//For some reason this seems to be necessary pre-ICS. If anyone knows why, I'd love to hear
lookupUri = Contacts.lookupContact(context.getContentResolver(), lookupUri);
}
stream = Contacts.openContactPhotoInputStream(context.getContentResolver(), lookupUri);
if (stream == null) {
resultPhoto = someDefaultPhoto;
}
else {
resultPhoto = BitmapFactory.decodeStream(stream);
}
return resultPhoto;
}
然后你可以用这样的东西来调用它:
int columnLookupKey = cursor.getColumnIndex(Contacts.LOOKUP_KEY);
String lookupKey = cursor.getString(columnLookupKey);
Uri lookupUri = Uri.withAppendedPath(Contacts.CONTENT_LOOKUP_URI, lookupKey);
Bitmap contactPhoto = getContactPhoto(context, lookupUri);
答案 2 :(得分:0)
这是我根据其他答案提出的。
private Uri getUserPictureUri(long id) {
Uri person = ContentUris.withAppendedId(
ContactsContract.Contacts.CONTENT_URI, id);
Uri picUri = Uri.withAppendedPath(person,
ContactsContract.Contacts.Photo.CONTENT_DIRECTORY);
try {
InputStream is = getContentResolver().openInputStream(picUri);
is.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
return null;
} catch (IOException e) {
e.printStackTrace();
}
return picUri;
}
答案 3 :(得分:0)
只需检查PhoneLookUp内容提供程序中的PHOTO_ID列是否为空 这是我开发的一种方法:
public static boolean hasContactPhoto(Context context, String number) {
String thumbUri = "";
String photoId = "";
String id = "";
Uri uri = Uri.withAppendedPath(ContactsContract.PhoneLookup.CONTENT_FILTER_URI,
Uri.encode(number));
Cursor cursor = context.getContentResolver().query(uri,
new String[] {ContactsContract.PhoneLookup._ID,ContactsContract.PhoneLookup.PHOTO_ID}, null, null, null);
if (cursor.moveToFirst()) {
id = cursor.getString(cursor.getColumnIndex(ContactsContract.PhoneLookup._ID));
photoId = cursor.getString(cursor.getColumnIndex(ContactsContract.PhoneLookup.PHOTO_ID));
}
cursor.close();
if(!id.equals("") && photoId != null && !photoId.equals(""))
return true;
//sms.setContactThumb(ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, Long.valueOf(id)).toString());
else
return false;
}
如果您需要联系人图片,请通过以下方式获取:
ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI,Long.valueOf(id))。toString()
如果您需要将其设置为图像视图,请使用以下行(我使用Universal Image Loader 1.9.2进行图像加载):
ImageLoader.getInstance().displayImage(currentRecord.getContactThumb(),viewHolder.mThumbIV);
注意:contactThumb是最后描述的uri 干杯!