构造函数 SimpleCursorAdapter(MyProgram, int, Cursor, int) 未定义
不断收到“构造函数 SimpleCursorAdapter(MyProgram, int, Cursor, int) 未定义”,但不知道为什么。这是我的代码。
Cursor c = mDbHelper.getAllTypes();
startManagingCursor(c);
SimpleCursorAdapter notes = new SimpleCursorAdapter(this, R.layout.list_item1, c, R.id.text1);
setListAdapter(notes);
有什么想法吗?
Keep getting "The constructor SimpleCursorAdapter(MyProgram, int, Cursor, int) is undefined" and am not sure why. Here is my code.
Cursor c = mDbHelper.getAllTypes();
startManagingCursor(c);
SimpleCursorAdapter notes = new SimpleCursorAdapter(this, R.layout.list_item1, c, R.id.text1);
setListAdapter(notes);
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 SimpleCursorAdapter 的 API 文档显示以下签名
:需要相应地修改您的呼叫。
Looking at the API docs for SimpleCursorAdapter shows the following signature:
So you need to modify your call accordingly.