如何从 sqlite 数据库的自定义列表视图添加数据?

发布于 2024-12-18 19:05:50 字数 77 浏览 0 评论 0原文

在 android 应用程序中,我有一个自定义列表视图和 sqlite 数据库。 我想将数据库表值显示到自定义列表视图。请任何人帮我一些代码

In android application i have a custom listview and sqlite database.
I want to display the database table value to custom listview.Please any one help me some code

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

暮年 2024-12-25 19:05:50

这是一个可能有帮助的网站

SimpleCursorAdapters 和 ListViews

Here is a website that might help

SimpleCursorAdapters and ListViews

故事灯 2024-12-25 19:05:50

你需要按照这个思路做一些事情

          String[] fields = new String[] {Database.NAME};
    SimpleCursorAdapter  mAdapter = new SimpleCursorAdapter(getActivity(),R.layout.names_listview,null,fields,
              new int[] {R.id.bListTextView});
      setListAdapter(mAdapter);

you need to do something along the lines of this

          String[] fields = new String[] {Database.NAME};
    SimpleCursorAdapter  mAdapter = new SimpleCursorAdapter(getActivity(),R.layout.names_listview,null,fields,
              new int[] {R.id.bListTextView});
      setListAdapter(mAdapter);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文