How can I tell how many contacts there are in the contact list? I got the contact number, but one person can have more than one contact and I want to account for this in finding the total number of contacts in the contact list.
|
feedback
|
|
To find the count of phone numbers of all the contacts
To find the count of all the phone numbers of a particular RawContactID (pass the contact id value in rawContactId).
The number of contacts displayed in the ContactsListActivity consists can be determined by following query.
int count = cursor.getCount(); However if a person has been entered under multiple accounts then only a single instance is obtained by the above query as ContactsContract.Contacts combines all such contacts.
int count = cursor.getCount(); The relation between ContactsContract.Contacts and RawContacts can be found out at http://developer.android.com/resources/articles/contacts.html Hope this resolves your doubt! | |||||||
feedback
|