请帮我找到解决方案。我有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;
}