我希望将该联系人作为应用中的收藏,将其应用于默认Android设备的联系簿。
答案 0 :(得分:1)
您只需要更新Contacts.STARRED
字段,其值为" 1":
private void starContact(int contactId) {
Uri contactUri = Uri.withAppendedPath(Contacts.CONTENT_URI, String.valueOf(contactId));
ContentValues values = new ContentValues(1);
values.put(Contacts.STARRED, "1"); // put "0" for false
int update = getContentResolver().update(contactUri, values, null, null);
// if update == 1 the action was successful
}