contactscontract

How many queries are required to get the names and numbers of everyone in an Android contact group?

Using the Android 2.0 ContactsContract API, is it possible to build a list of objects representing contacts in a Contact Group like this: public class GroupContact { public String displayName; public List<String> phoneNumbers; } While making fewer than O(n) SQL queries? ...

Modify contact is not updating the contact on GalaxyS

Hi, I am trying with the "ContactManager" sample of Android 2.2 to modify an existing contact. I am using http://developer.android.com/reference/android/provider/ContactsContract.Data.html to modify an existing contact,- private void UpdateContacts(){ // Run query ArrayList ops = new ArrayList(); Log.d(TAG,"UpdateContacts for...