我有这个更新代码:
public Boolean update() {
try {
data.put(ContactsContract.Groups.SHOULD_SYNC, true);
ContentResolver cr = ctx.getContentResolver();
Uri uri = ContentUris.withAppendedId(ContactsContract.Groups.CONTENT_URI, Long.parseLong(getId()));
int mid = cr.update(uri, data,_ID+"="+getId(), null);
// notify registered observers that a row was updated
ctx.getContentResolver().notifyChange(
ContactsContract.Groups.CONTENT_URI, null);
if (-1 == mid)
return false;
return true;
} catch (Exception e) {
Log.v(TAG(), e.getMessage(), e);
return false;
}
}
我有值data
,我仔细检查了,由于某种原因,这些值被推出了。我也跑了一个cur.requery();
,我有
<uses-permission android:name="android.permission.WRITE_CONTACTS"></uses-permission>
编辑 1 有一件事要提,我需要使用:
data.put(ContactsContract.Groups.SHOULD_SYNC, 1);
作为true
不接受的值,尽管在您检查 ContentValues 时会返回该值。