我无法按照在 Android 中使用 SQLite的指南进行操作。我使用的是 aListFragment
而不是 a ListActivity
(如示例中所示),所以我使用的是ListFragment
工具LoaderManager.LoaderCallbacks<Cursor>
。然后,在fillData()
方法中ListFragment
:
private void fillData() {
// Fields from the database (projection)
// Must include the _id column for the adapter to work
String[] from = new String[] { NotesSQLiteHelper.COLUMN_TITLE };
// Fields on the UI to which we map
int[] to = new int[] { R.id.label };
getLoaderManager().initLoader(0, null, this); //error
adapter = new SimpleCursorAdapter(getApplicationContext(), R.layout.notes_row, null, from, to, 0);
setListAdapter(adapter);
}
我得到错误:
The method initLoader(int, Bundle, LoaderManager.LoaderCallbacks<D>) in the type LoaderManager is not applicable for the arguments (int, null, NotesActivity.ArrayListFragment)
在标记线上,即使this
执行LoaderManager.LoaderCallbacks<Cursor>
。
谢谢你的任何想法。