Refresh ListView with ArrayAdapter after editing an Item
问题 I have a ListView, which displays a list of notes taken from a table in SQLiteDatabase with ArrayAdapter. public class NotepadActivity extends ListActivity { protected static final int ADD_NEW_NOTE = 0; protected static final int EDIT_NOTE = 1; ArrayAdapter<Note> adapter; NotesManager manager; private Note nNoteToDelete; ArrayList<Note> lstAllNotes; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); findViewById(R.id