Mi's problem is that I need to implement Contact List in my application for android 1.5, 1.6 and 2.x.
I did this using the old Contacts API, not ContactsContract due to backward compatibility with 1.x. But when displaying my application on 2.x, the contact list is not complete. On some devices, it appears as empty, and on some devices it displays only some of the contacts on the device.
I know that when using the Contacts API in the 2.x series, only the main contacts of the account will be displayed, but this is not so. It seems that only recently updated contacts are displayed, but this is also not the case.
So the question is: how to properly implement the contact list for versions 2.x and 1.x for Android?
Thanks in advance
source
share