如何获取特定联系人的联系人姓名详细信息

时间:2011-12-02 07:18:35

标签: android contactscontract

我想要的联系人姓名包括(FAMILY_NAME,GIVEN_NAME,MIDDLE_NAME,PHONETIC_FAMILY_NAME,PHONETIC_GIVEN_NAME,PHONETIC_MIDDLE_NAME,PREFIX,SUFFIX)。

我知道以

开头的上述数据的列名

android.provider.ContactsContract.CommonDataKinds.StructuredName

但是我无法获得数据的 URI

我正在使用api level 8的设备工作,所以我想使用

获取这些细节

android.provider.ContactsContract

我在社区搜索了这个,但我无法得到理想的结果。

我在这工作了4个小时。

任何帮助将不胜感激。

我正在使用此代码

 Cursor cursor = activity.managedQuery(android.provider.ContactsContract.Contacts.CONTENT_URI, null, null, null, null);
        if (cursor != null) 
        {
            if (cursor.moveToFirst()) 
            {

                int rows = cursor.getCount();
                int cols = cursor.getColumnCount();

                 do 
                    {

                         int _id = cursor.getInt(cursor.getColumnIndex("_id"));

                         int times_contacted = cursor.getInt(cursor.getColumnIndex("times_contacted"));
                         int has_phone_number = cursor.getInt(cursor.getColumnIndex("has_phone_number"));
                         int send_to_voicemail = cursor.getInt(cursor.getColumnIndex("send_to_voicemail"));
                         int starred = cursor.getInt(cursor.getColumnIndex("starred"));

// Here i want the contact names But i dont know what column name i have to pass to get them                      

                        }
                    while (cursor.moveToNext());    
            }
            cursor.close();
        }

提前致谢。

1 个答案:

答案 0 :(得分:2)

好的,试试这个,让我知道发生了什么,

查看ContactsContract.CommonDataKinds.StructuredName课程。您可以在那里找到您要查找的所有列。

   String whereName = ContactsContract.Data.MIMETYPE + " = ?";
    String[] whereNameParams = new String[] { ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE };
    Cursor nameCur = contentResolver.query(ContactsContract.Data.CONTENT_URI, null, whereName, whereNameParams, ContactsContract.CommonDataKinds.StructuredName.GIVEN_NAME);
    while (nameCur.moveToNext()) {
        String given = nameCur.getString(nameCur.getColumnIndex(ContactsContract.CommonDataKinds.StructuredName.GIVEN_NAME));
        String family = nameCur.getString(nameCur.getColumnIndex(ContactsContract.CommonDataKinds.StructuredName.FAMILY_NAME));
        String display = nameCur.getString(nameCur.getColumnIndex(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME));
    }
    nameCur.close();

看看这个问题How to get the firstname and lastname from android contacts?

编辑:查看使用Android联系人Working With Android Contacts的完整示例,现在,如果您想从任何联系人那里获取更多信息,请在该游标上添加特定列。有关更多列,请查看ContactsContract.CommonDataKinds