0

在我的应用程序中,启动时我想显示所有带有搜索过滤器选项的联系人。我已经实现了这一点,但问题是 - 加载联系人时,需要更多时间。如何提高代码的效率?下面的代码片段显示了我如何检索联系人:

public ContactList newContactList(Context ctx) {

ContactList contacts = new ContactList();

String id = "";

String sortOrder = ContactsContract.Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC";

try {

    this.cur = this.cr.query(ContactsContract.Contacts.CONTENT_URI, null, null, null, sortOrder);       
    if (this.cur.getCount() > 0) {
        while (cur.moveToNext()) {
            Contact c = new Contact();
            id = cur.getString(cur.getColumnIndex(ContactsContract.Contacts._ID));
                if (Integer.parseInt(cur.getString(cur.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
                c.setId(id);
                c.setDisplayName(cur.getString(cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME)));
                c.setPhone(this.getPhoneNumbers(ctx, id));
                c.setEmail(this.getEmailAddresses(id));
                c.setNotes(this.getContactNotes(id));
                c.setAddresses(this.getContactAddresses(id));
                c.setImAddresses(this.getIM(id));
                c.setOrganization(this.getContactOrg(id));
                //c.setPicture(loadContactPhoto(cr, cur.getLong(cur.getColumnIndex(CommonDataKinds.Photo.CONTACT_ID))));
                contacts.addContact(c);
            }               
        }
    }
    }
    catch(Exception e)
    {
        throw new IllegalStateException(e);
    }
    finally
    {
        cur.close();            
    }

    return(contacts);
}

ContactList 是一个返回所有联系人的 ArrayList 的类,我使用这个 ArrayList 将它设置为我的自定义适配器类。我想,因为通过游标迭代来获取数组列表需要很多时间。但是,我需要这个数组列表来根据搜索条件过滤联系人并显示自定义联系人列表。有什么方法可以提高代码的性能吗?

4

1 回答 1

1

你为什么不使用 CursorAdapter ? http://developer.android.com/reference/android/widget/CursorAdapter.html

于 2012-04-26T11:24:51.677 回答