I am developing an application that needs to list all contacts in the phone's contacts list. Each cell needs to have the name of the contact and the corresponding photo (primaryPhoto). I can do this, by fetching contactDetails for each contact. However, if the contacts list has a huge number of elements, this process is too slow. To handle this problem, I am not fetching the contact details and I am using the partial contacts retreived by
contacts = m_contactService->contacts(filter);
The only problem is that this list doesn't contain any photo! And I need the primaryPhoto available.
Is there a way to get the primaryPhoto from a partialContact without the need to fecth all contact details?
Thanks for your help