I would like my code to update contact details (like name, phone number, email, organization details, etc) in the android contact book. I was successful in
String[] projection = new String[] { ContactsContract.RawContacts._ID };
String where = ContactsContract.RawContacts.CONTACT_ID + " = ?";
String[] selection = new String[] { String.valueOf(1) };
Cursor c = getContentResolver().query(ContactsContract.RawContacts.CONTENT_URI, projection, where, selection, null);
c.moveToFirst();
for(int i=0;i