update contact details on Android

前端 未结 3 428
再見小時候
再見小時候 2020-12-20 10:49

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

3条回答
  •  无人及你
    2020-12-20 11:10

    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

提交回复
热议问题