CursorAdapter adapter = (CursorAdapter) getListAdapter();
adapter.getCursor().requery();
adapter.notifyDataSetChanged();
CursorAdapter를 가져와서
거기에서 다시 Cursor를 가지고 오고 requery();
그리고 adapter에 notifyDataSetChanged() 해주면 된다.
CursorAdapter adapter = (CursorAdapter) getListAdapter();
adapter.getCursor().requery();
adapter.notifyDataSetChanged();