final String[] CONTACT_PROJECTION = new String[] { Contacts._ID, Contacts.DISPLAY_NAME, }; ContentResolver cr = getContentResolver(); Uri contacts = Contacts.CONTENT_URI; Cursor cur = cr.query(contacts, CONTACT_PROJECTION, null, null, Contacts.DISPLAY_NAME + " ASC");
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)