获得联系人绩效问题

时间:2012-06-06 19:46:46

标签: java android cursor

我正在尝试获取Android设备的联系人。 我找到了一个很棒的示例代码here

然而,当尝试使用ListActivity填充使用该代码的ArrayAdapter时,需要花费大量时间 - 在galaxy s2上花费大约4秒,在旧设备上花费更多时间。 我需要改善这种表现。我的想法是实现Cursor,它将包含多个维Cursor,并使用SimpleCursorAdapter作为列表适配器。
我发现这种方法几乎没有问题:

  • 我不知道如何在特定位置拿到物品。
  • 每个光标都有不同的列。

有更好/更简单的方法吗?

编辑:

这是我的代码:

public List<ContactData> readContacts(){
    ContentResolver cr = getContentResolver();
    List<ContactData> cd = new ArrayList<ContactData>();
    Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
           null, null, null, ContactsContract.Contacts.DISPLAY_NAME);

    if (cur.getCount() > 0) {
       while (cur.moveToNext()) {
           String id = cur.getString(cur.getColumnIndex(ContactsContract.Contacts._ID));
           String name = cur.getString(cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
           if (Integer.parseInt(cur.getString(cur.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {

               // get the phone number
               Cursor pCur = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,null,
                                      ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = ?",
                                      new String[]{id}, null);
               while (pCur.moveToNext()) {
                     String phone = pCur.getString(
                            pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
                     if (!Utils.isEmpty(phone)) {
                         cd.add(new ContactData(id, name, phone));
                     }
               }
               pCur.close();


           }
       }
  }
    return cd;
}

编辑2:

设法通过将其更改为仅一个查询来修复它:

public List<ContactData> readContacts(){
    ContentResolver cr = getContentResolver();
    List<ContactData> cd = new ArrayList<ContactData>();
               Cursor pCur = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
                       new String[]{ContactsContract.CommonDataKinds.Phone._ID,ContactsContract.CommonDataKinds.Phone.NUMBER,ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME_PRIMARY},
                       ContactsContract.CommonDataKinds.Phone.NUMBER + " IS NOT NULL",
                                      null, 
                                      ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME_PRIMARY);
               while (pCur.moveToNext()) {
                     String phone = pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
                     String id = pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone._ID));
                     String name = pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME_PRIMARY));
                         ContactData cd1 = contactDataProvider.get();
                         cd1.id = id;
                         cd1.name = name;
                         cd1.phone = phone;
                         cd.add(cd1);
               }
               pCur.close();
    return cd;
}

2 个答案:

答案 0 :(得分:4)

您可以在获得电话号码的同时获取姓名和身份证件:

String[] PROJECTION=new String[] {Contacts._ID, Contacts.DISPLAY_NAME, Phone.NUMBER};
Cursor pCur = cr.query(Phone.CONTENT_URI, PROJECTION, Phone.CONTACT_ID +" = ?",
                                      new String[]{id}, null);

这消除了每行子查询。

答案 1 :(得分:3)

使用Cursor是解决此问题的好方法。要从特定位置获取检索信息,您可以使用Cursor.moveToPosition(int position)。然后,您可以使用Cursor访问String的任何字段,在本例中为Cursor.getString(int columnIndex)

查看Cursor文档了解更多详情。

此方法的最佳部分是您可以实现CursorLoader来为您执行后台数据检索。它还会自动处理重新填充ListView数据更改,方向更改等问题。请查看this great tutorial以获取更多说明。