修改记录-Android开发入门指导
修改记录t使用ContentResolver.update()方法来修改数据,我们来写一个修改数据的方法: tprivate void updateRecord(int recNo, String name) { t Uri uri = ContentUris.withAppendedId(People.CONTENT_URI, recNo); t ContentValues values = new ContentValues(); t values.put(People.NAME, name); t getContentResolver().update(uri, values, null); t} t调用上面的方法来更新指定记录: tupdateRecord(10, ”XYZ”); //更改第10条记录的name字段值为“XYZ”
用户评论