Android |通过电话号码检索联系人照片的最佳方法是什么?

时间:2011-04-12 15:58:57

标签: java android eclipse android-contentresolver

我有一个应用程序,需要获取给定联系人的照片。我有联系人的电话号码,有没有办法通过ContentResolver或任何其他表格通过电话号码检索联系人的照片?我一直在寻找,但没有找到答案。

我真的想强调使用电话号码获取联系人照片的重要性(如果存在)。谢谢。

2 个答案:

答案 0 :(得分:8)

好的,我终于想出了如何添加Facebook照片。此方法将通过电话号码

添加您需要的Facebook照片
    public Bitmap getFacebookPhoto(String phoneNumber) {
    Uri phoneUri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(phoneNumber));
    Uri photoUri = null;
    ContentResolver cr = this.getContentResolver();
    Cursor contact = cr.query(phoneUri,
            new String[] { ContactsContract.Contacts._ID }, null, null, null);

    if (contact.moveToFirst()) {
        long userId = contact.getLong(contact.getColumnIndex(ContactsContract.Contacts._ID));
        photoUri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, userId);

    }
    else {
        Bitmap defaultPhoto = BitmapFactory.decodeResource(getResources(), android.R.drawable.ic_menu_report_image);
        return defaultPhoto;
    }
    if (photoUri != null) {
        InputStream input = ContactsContract.Contacts.openContactPhotoInputStream(
                cr, photoUri);
        if (input != null) {
            return BitmapFactory.decodeStream(input);
        }
    } else {
        Bitmap defaultPhoto = BitmapFactory.decodeResource(getResources(), android.R.drawable.ic_menu_report_image);
        return defaultPhoto;
    }
    Bitmap defaultPhoto = BitmapFactory.decodeResource(getResources(), android.R.drawable.ic_menu_report_image);
    return defaultPhoto;
}

答案 1 :(得分:0)

我认为没有一种简单的方法可以做到这一点。但我想你可以通过电话查看联系人,并检查每个号码是否是你想要匹配的号码。

因为数字无论如何都是无序的,所以没有办法让它更有效率。在无序列表中搜索是通过遍历它们来执行的,因为我建议你应该解决这个问题。除非Android将所有数字保存在我不知道的有序列表中。

您可以通过以下操作遍历联系人:

Cursor cursor = getContentResolver().query(ContactsContract.Contacts.CONTENT_URI,null, null, null, null); 
while (cursor.moveToNext()) { 
   String contactId = cursor.getString(cursor.getColumnIndex( 
   ContactsContract.Contacts._ID)); 
   String hasPhone = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER)); 
   if (Boolean.parseBoolean(hasPhone)) { 
      // You know it has a number so now query it like this
      Cursor phones = getContentResolver().query( ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = "+ contactId, null, null); 
      while (phones.moveToNext()) { 
         String phoneNumber = phones.getString(phones.getColumnIndex( ContactsContract.CommonDataKinds.Phone.NUMBER));                 
      } 
   phones.close(); 
}
cursor.close();

这不是您的任务的完整解决方案,但通过修改上面的代码,我认为您将通过。 : - )