用于显示“联系人”的自定义ListView需要更多时间加载

时间:2012-04-26 11:20:41

标签: android android-contacts custom-lists custom-adapter performance

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

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,我将它设置为我的自定义适配器类。我想,因为通过迭代光标获取arraylist需要花费很多时间。但是,我需要这个arraylist根据搜索条件过滤联系人并显示自定义联系人列表。有什么方法可以提高代码的性能吗?

1 个答案:

答案 0 :(得分:1)