我正在搞乱记事本练习1.当我创建fillData方法时,出现“无法将光标解析为类型”的错误
这是我的代码:
private void fillData() {
//get notes from DB and create item list
Cursor c = mDbHelper.fetchAllNotes();
startManagingCursor(c);
String[] from = new String [] { NotesDbAdapter.KEY_TITLE };
int[] to = new int[] { R.id.text1 };
SimpleCursorAdapter notes =
new SimpleCursorAdapter(this, R.layout.notes_row, c, from, to);
setListAdapter(notes);
}
我是否需要在我的java文件顶部导入游标类?如果是这样,怎么样?
答案 0 :(得分:7)
您很可能需要添加import
声明
喜欢:
import android.database.Cursor;