构造函数 SimpleCursorAdapter(MyProgram, int, Cursor, int) 未定义

发布于 2024-09-03 19:12:41 字数 319 浏览 1 评论 0原文

不断收到“构造函数 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇柔作态 2024-09-10 19:12:41

查看 SimpleCursorAdapter 的 API 文档显示以下签名

SimpleCursorAdapter(Context ctx, int layout, Cursor c, String[] from, int[] to)

:需要相应地修改您的呼叫。

Looking at the API docs for SimpleCursorAdapter shows the following signature:

SimpleCursorAdapter(Context ctx, int layout, Cursor c, String[] from, int[] to)

So you need to modify your call accordingly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文