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? ...