在Codename中加载联系人的最快,最可靠的方法之一

时间:2016-02-16 08:07:40

标签: java codenameone

我正在尝试将所有手机联系人作为注册的一部分进入我的应用程序,我希望联系人加载图像(不可协商)。

我使用下面的代码在iOS上崩溃应用程序,在android上运行速度非常慢。在Codename one中加载所有手机通讯录的最佳方式是什么?

其他应用程序设法在很短的时间内获取所有联系人,所以我确信这可以完成。为什么代码会在iOS上崩溃我的应用程序?

Image defaultIcon = fontIcon("\ue113", 7, 0xbcbcbc);
try {
    InfiniteProgress progress = new InfiniteProgress();
    progress.setAnimation(fontIcon(FontIcon.FONTICON_SPIN6 + "", 4, 0x12a4f4));
    Dialog ipDlg = progress.showInifiniteBlocking();
    final String[] myContacts = Display.getInstance().getAllContacts(true);
    for (final String contactId : myContacts) {
        Contact contact = Display.getInstance().getContactById(contactId, true, true, true, true, true);
        Hashtable numbers = contact.getPhoneNumbers();
        Enumeration nums = numbers.elements();

        String firstName = contact.getFirstName() != null ? contact.getFirstName() : "";
        String familyName = contact.getFamilyName() != null ? contact.getFamilyName() : "";
        String names = firstName + " " + familyName;
        while (nums.hasMoreElements()) {
            String phoneNumber = (String) nums.nextElement();
            MultiButton multiContact = new MultiButton(names);
            multiContact.setTextLine2(phoneNumber);
            Image img = contact.getPhoto();
            multiContact.setIcon(img != null ? img.scaledWidth(Size(7)) : defaultIcon);
            content.add(multiContact);
        }
    }
    ipDlg.dispose();
} catch (Exception ex) {
}

1 个答案:

答案 0 :(得分:2)

这是加载联系人的最快方式:

Contact[] contacts = Display.getInstance().getAllContacts(true, false, false, false, false, false);

一旦加载了联系人,您可以根据要求懒洋洋地提供图像。 E.g:

new Thread(() -> { 
    Contact[] cnts = Display.getInstance().getAllContacts(true, false, true, false, false, false); 
    for (int i = 0; i < cnts.length; i++) { 
        Contact cnt = cnts[i]; 
        Image pic = cnt.getPhoto(); 
        if(pic != null) { 
           contactsPics.put(cnt.getId(), pic); 
        } 
    } 
}).start();