7

我在获取和设置联系人图像作为视图背景时遇到问题,令人惊讶的是,很少有关于如何做到这一点的示例。我正在尝试构建类似于显示大联系人照片的 People 应用程序的东西。

这就是我现在正在做的事情:

Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, Long.valueOf(id));
InputStream input = ContactsContract.Contacts.openContactPhotoInputStream(context.getContentResolver(), uri);
Bitmap bm = BitmapFactory.decodeStream(input);
Drawable d = new BitmapDrawable(bm);
button.setBackgroundDrawable(drawable);

这可行,但是它使用的 URI 获取缩略图,因此即使有一张大照片图像在缩放以适合 imageView 时看起来也很糟糕。我知道另一种获取实际获取大照片的 URI 的方法是:

final Uri imageUri = Uri.parse(cur.getString(cur.getColumnIndex(ContactsContract.Contacts.PHOTO_URI)));

但是我还没有设法将它放到 imageView 中,也许上面的代码可以适应使用第二个 uri。如果您知道如何使用第二个 uri,或者如果有比通过 URI 更简单的方法来获取联系人图像,请告诉我。任何信息将不胜感激。

4

7 回答 7

8

获取 URI 的工作做得很好。您快到了。首先考虑使用 PHOTO_THUMBNAIL_URI 而不是 PHOTO_URI,因为它可能是您需要的大小。

编辑:仅供参考,PHOTO_THUMBNAIL_URI 从 API 11 开始可用。您仍然可以有条件地使用它。

如果你想使用外部库,' Android Universal Image Loader ' 绝对是你要找的,因为从前几天的 1.7.1 版本开始,它增加了对内容方案的支持,它非常​​聪明,内存明智的。它还有很多自定义选项。

编辑:这个库已经死了。请改用Fresco

如果您希望更好地调整最终包大小并自己编写代码,

您需要获取并解码该内容的输入流;这应该在后台线程上完成。看看这个方便的方法;你用你的图像视图和你得到的 uri 初始化它,并在你想加载 ImageView 时启动它。

private class ContactThumbnailTask extends AsyncTask<Void, Void, Bitmap> {

    private WeakReference<ImageView> imageViewWeakReference;
    private Uri uri;
    private String path;
    private Context context;


    public ContactThumbnailTask(ImageView imageView, Uri uri, Context context) {
        this.uri = uri;
        this.imageViewWeakReference = new WeakReference<ImageView>(imageView);
        this.path = (String)imageViewWeakReference.get().getTag(); // to make sure we don't put the wrong image on callback
        this.context = context;
    }

    @Override
    protected Bitmap doInBackground(Void... params) {
        InputStream is = null;
        try {
            is = context.getContentResolver().openInputStream(uri);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }

        Bitmap image = null;
        if (null!= is)
            image=  BitmapFactory.decodeStream(is);

        return image;
    }

    @Override
    protected void onPostExecute(Bitmap bitmap) {
        if (imageViewWeakReference != null && imageViewWeakReference.get() != null && ((String)imageViewWeakReference.get().getTag()).equals(path) && null != bitmap)
            imageViewWeakReference.get().setImageBitmap(bitmap);
    }
}
于 2013-02-02T00:06:56.340 回答
2

是建议。首先要知道一件事。

当您设置联系人图像时。首先 Android 显示该图像的裁剪活动。喜欢 在此处输入图像描述

****仔细看上图。Android 将图像裁剪为方形。并将方形图像作为 Blob 存储在联系人中。(它不是单独的图像。它是 Blob。)
您可以从编码中获得用于图像视图的方形图像。所以顶部和底部只显示黑色。因为你的手机是矩形的。****

如果要显示全屏图像。请以编程方式为联系人设置大图像。互联网上有很多例子。

一切顺利。如果您有任何疑问。请提供意见。

于 2013-02-07T13:43:55.897 回答
0

您可以尝试使用 SmartImageView: http: //loopj.com/android-smart-image-view/ extends imageview 并异步加载图像。

于 2013-02-05T22:08:11.600 回答
0

为此,您只需添加最后一个参数 preferHighres = true:

openContactPhotoInputStream (ContentResolver cr, Uri contactUri, boolean preferHighres)

如果preferHighres为 true 并且联系人有更高分辨率的照片可用,则返回。如果为 false,此函数总是尝试获取缩略图

     Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, Long.valueOf(id));
     InputStream input = ContactsContract.Contacts.openContactPhotoInputStream(context.getContentResolver(), uri, true);

所有的图像可能会有不同的尺寸。为了调整它们的大小,我使用下一个代码:

    Bitmap bm = BitmapFactory.decodeStream(input);
    bm = Bitmap.createScaledBitmap(photo, contactImageWidth, contactImageheight, false);
    Drawable d = new BitmapDrawable(getContext(), bm);
    button.setBackgroundDrawable(d);
于 2014-01-31T18:48:16.927 回答
0

可能这会对您有所帮助(联系人由getId()标识):

/**
 * @return the photo URI
 */

public Uri getPhotoUri() {
    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 = objItem.getPhotoUri();
if (u != null) {
        mPhotoView.setImageURI(u);
} else {
        mPhotoView.setImageResource(R.drawable.ic_contact_picture_2);
}
于 2013-02-06T07:46:30.090 回答
0

您可以使用以下方法轻松地将联系人照片设置为图像视图。

public String getImageUriString(String phoneNumber)
{
    ContentResolver resolver = context.getContentResolver();
    Cursor names = resolver.query(
            Uri.withAppendedPath(ContactsContract.PhoneLookup.CONTENT_FILTER_URI, Uri.encode(phoneNumber)),
            null, null, null, null);

    names.moveToFirst();
    String name = "";
    if(!names.isAfterLast())
    {
        name = names.getString(names.getColumnIndex(ContactsContract.PhoneLookup.PHOTO_URI));

    }
    else
    {
        name = null;
    }

    names.close();

    return name;
}





public void setImageView(ImageView contactPhoto) {

String photoUriString = di.getImageUriString(contactNumber);
        if(photoUriString != null) {
            Uri photoUri = Uri.parse(photoUriString);
            contactPhoto.setImageURI(photoUri);
        } else {
            contactPhoto.setImageResource(R.drawable.icon_contact);
        }
}

在您的班级中,使用从上述方法获取的 uri 设置图像视图。

于 2013-05-18T15:11:56.653 回答
0

使用外部库为您执行此操作。或者浏览代码并按照自己的方式制作类似的东西。

这是我在自己的几个应用程序中使用的一个:UrlImageViewHelper

代码如下:

Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, Long.valueOf(id));  
UrlImageViewHelper.setUrlDrawable(button, uri.toString(), R.drawable.dummy_contact_photo); 
于 2013-02-06T04:43:02.753 回答