更新ListView中的行

时间:2015-06-16 04:57:08

标签: android sqlite

请帮我找到解决方案。我有2个活动A和B.Data来自B通过OnActivityResult方法,保存在DataBase并显示在ListView

我需要使用OnItemClick方法更新数据。但问题是如何做到这一点。我知道一种方法,用EditText创建一个新的活动,但我认为它不正确。

我还能用什么?

我在DB中有这个方法:

public boolean updateRow(long rowId, String task, String date,String grup){
        String where = KEY_ROWID + "=" + rowId;
        ContentValues newValues = new ContentValues();
        newValues.put(KEY_TASK, task);
        newValues.put(KEY_DATE, date);
        newValues.put(KEY_GRUPS, grup);
        // Insert it into the database.
        return db.update(DATABASE_TABLE, newValues, where, null) != 0;
}

0 个答案:

没有答案