I got this exception when i run the project, here is part of main activity
private void fillData() {
// Get all of the notes from the database and create the item list
Cursor notesCursor = mDbHelper.fetchAllNotes();
if (notesCursor != null) {
notesCursor.moveToFirst();
do {
messagesList.add(notesCursor.getString(notesCursor
.getColumnIndex(DbAdapter.KEY_FIELD2)));
Log.e("Test", notesCursor.getString(notesCursor
.getColumnIndex(DbAdapter.KEY_FIELD2)));
} while (notesCursor.moveToNext());
}
customAdapter.notifyDataSetChanged();
// setListAdapter(notes);
}