0
グループにメモを追加する方法。連絡先を追加/変更する方法グループノート
私はそう、私は私の答えを得る
ContentValues contentValues = new ContentValues();
contentValues.put(Groups.NOTES, note);
グループにメモを追加する方法。連絡先を追加/変更する方法グループノート
私はそう、私は私の答えを得る
ContentValues contentValues = new ContentValues();
contentValues.put(Groups.NOTES, note);
それを試してみてください。
public static boolean setGroupNote(String groupId, String note)
{
try
{
if (groupId == null || note == null)
return false;
String where = Groups._ID + " = ?";
String[] args = {groupId};
ContentValues contentValues = new ContentValues();
contentValues.put(Groups.NOTES, note);
int u = getContentResolver.update(Groups.CONTENT_URI, contentValues, where, args);
if(u != 0)
return true;
}
catch (Exception e) {}
return false;
}