EditText items in a scrolling list lose their changes when scrolled off the screen
- by ianww
I have a long scrolling list of EditText items created by a SimpleCursorAdapter and prepopulated with values from an SQLite database.
I make this by:
cursor = db.rawQuery("SELECT _id, criterion, localweight, globalweight FROM " + dbTableName + " ORDER BY criterion", null);
startManagingCursor(cursor);
mAdapter = new SimpleCursorAdapter(this,…