AndroidSDK
を最新バージョンに更新したところstartManagingCursor()
、deprecated
. 新しい CursorLoader
.
private void fillData() {
Cursor notesCursor = mDbHelper.fetchAllNotes();
startManagingCursor(notesCursor);
NoteAdapter notes = new NoteAdapter(this, R.layout.notes_row, notesCursor);
setListAdapter(notes);
}
では、startManagingCursor()
古いコードですが、新しいコードが翻訳された場合、どのように見えるでしょうか?