Am building an app that requires a custom contact field ('whitelist', if you were wondering) for every phone number.
However, I only found a way of saving custom data for each contact, with Data.RAW_CONTACT_ID, but not for each phone number. I tried using Phone._id, but I got a java.nullpointerexception error.
This is the code I have now:
try{ //phoneId = get Phone._ID from cursor
ContentValues values = new ContentValues();
values.put(Data.DATA1, "yes");
int state = getContentResolver().update(Phone.CONTENT_URI, values, Phone._ID + " = "
+ phoneId + " AND " + Data.MIMETYPE + "='" + MIMETYPE_WHITELIST_CONTACT+"'", null);
if (state == 0) {
values.put(Phone._ID, phoneId);
values.put(Data.DATA1, "yes");
values.put(Data.MIMETYPE, MIMETYPE_WHITELIST_CONTACT);
getContentResolver().insert(Data.CONTENT_URI, values);
}
}catch (Exception e) {
Toast.makeText(ChooseContactsActivity.this, e.toString(), Toast.LENGTH_LONG).show();
}
Does anyone have any idea what needs to be changed so it can save a custom field for the phone number, not the contact?