首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >获取原始联系人缩略图

获取原始联系人缩略图
EN

Stack Overflow用户
提问于 2014-02-17 16:51:20
回答 1查看 1.3K关注 0票数 3

我想取回原始联系人的照片。对于给定的原始联系人,我可以成功地获得高分辨率的照片,但是当我想获得相同原始联系人的缩略图时,我得到了以下例外:

代码语言:javascript
复制
02-17 05:43:44.695: E/DatabaseUtils(4071): Writing exception to parcel
02-17 05:43:44.695: E/DatabaseUtils(4071): java.lang.IllegalArgumentException: URI: content://com.android.contacts/raw_contacts/8/photo, calling user: com.pedro.notesquirrel, calling package:com.pedro.notesquirrel
02-17 05:43:44.695: E/DatabaseUtils(4071):  at com.android.providers.contacts.LegacyApiSupport.query(LegacyApiSupport.java:1914)
02-17 05:43:44.695: E/DatabaseUtils(4071):  at com.android.providers.contacts.ContactsProvider2.queryLocal(ContactsProvider2.java:6378)
02-17 05:43:44.695: E/DatabaseUtils(4071):  at com.android.providers.contacts.ContactsProvider2.query(ContactsProvider2.java:4999)
02-17 05:43:44.695: E/DatabaseUtils(4071):  at android.content.ContentProvider$Transport.query(ContentProvider.java:200)
02-17 05:43:44.695: E/DatabaseUtils(4071):  at android.content.ContentProviderNative.onTransact(ContentProviderNative.java:112)
02-17 05:43:44.695: E/DatabaseUtils(4071):  at android.os.Binder.execTransact(Binder.java:404)
02-17 05:43:44.695: E/DatabaseUtils(4071):  at dalvik.system.NativeStart.run(Native Method)

我正在使用RESTlet框架,但我不认为它与这个问题有任何关系。

这是我的密码:

这里,mHighResolution是一个Boolean,当它是false时,它会生成这个异常。当它是真的,它会显示照片。所以,

代码语言:javascript
复制
mHighResolution == false -> exception
mHighResolution == true -> works fine

代码语言:javascript
复制
public InputStream getPhotoInputStream() {
        Uri uri = Uri.withAppendedPath(ContactsContract.RawContacts.CONTENT_URI, String.valueOf(mRawContactId));
        return ContactsContract.Contacts.openContactPhotoInputStream(contentResolver, uri, mHighResolution);
}

代码语言:javascript
复制
    @Override
    public void handle(Request request, Response response) {

        String type = request.getMethod().getName();
        String uid = (String) request.getAttributes().get("uid");

        if(type.equalsIgnoreCase("get"))
        {
            try {
                Representation r = processGet(uid);
                response.setEntity(r);
            } catch (NotFoundException e) {
                Log.e(TAG, e.getMessage(), e);
                response.setStatus(new Status(Status.CLIENT_ERROR_NOT_FOUND, e.getMessage()));
            } catch (IOException e) {
                Log.e(TAG, e.getMessage(), e);
                response.setStatus(new Status(Status.SERVER_ERROR_INTERNAL, e.getMessage()));           
            } 
        }

代码语言:javascript
复制
private Representation processGet(String uid) throws NotFoundException, IOException
{
    Photo photo = new Photo(mContext, uid);
    Representation representation = new InputRepresentation(photo.getPhotoInputStream());

    return representation;
}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2014-02-18 15:25:31

缩略图保存在Data表中的Contacts数据库中。

Android将照片保存在图像文件(高分辨率)或数据库中,作为blob保存。

要访问图像文件,可以使用我在问题中使用的方法。要访问数据库中的缩略图,可以使用以下代码:

代码语言:javascript
复制
public InputStream getPhotoThumbnailInputStream(String uid)
{
    final String[] projection = new String[]{Data.DATA15};
    final String selection = Data.RAW_CONTACT_ID + "=? AND " + Data.MIMETYPE + " =?";
    final String[] selectionArgs = new String[]{uid, android.provider.ContactsContract.CommonDataKinds.Photo.CONTENT_ITEM_TYPE};

    final Cursor cursor = contentResolver.query(Data.CONTENT_URI, projection, selection, selectionArgs, null);

    if(cursor.moveToFirst())
    {
        byte[] photo = cursor.getBlob(0);
        InputStream is = new ByteArrayInputStream(photo);
        cursor.close();
        return is;
    }
    else {
        Log.e(TAG, "Photo thumbnail not found for the given raw contact id.");
        cursor.close();
        return null;
    }
}
票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/21834791

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档