从 SQlite 检索的数据如何存储为“收藏夹列表”在安卓中?

发布于 2024-11-14 08:48:34 字数 319 浏览 5 评论 0原文

我正在开发一个 Android 应用程序,您应该能够在其中浏览某些食谱。

我正在从 SQLite 数据库表中检索有关食谱的信息,并以 listview 形式检索一些列。现在,当我单击列表中的收藏夹按钮时,我想将一些检索到的数据存储到我的收藏夹页面中。怎么可能......我想在我的应用程序中实现“添加到收藏夹”功能

如何使用SQlite数据库以listview的形式存储此类信息?

有什么想法吗?示例代码?

I am developing an Android application where you should be able to browse certain recipes.

I am retrieving the information about the recipes from SQLite database table, and retrieved some columns in a listview form. Now I want to store some of the retrieved datas into my favourites page, when I click favourite button in list. How can it possible..I want to implement "Add to favourites" feature in my app

How can I store that kind of info in the form of listview Using SQlite database?

Any ideas? Example code?

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

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

发布评论

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

评论(2

桃扇骨 2024-11-21 08:48:34

只需将一个名为 favourites 的新表添加到您的 SQLite 数据库中,并将recipe_id 存储在其中即可。

Just add a new table to your SQLite database called favourites, and store the recipe_id in there.

小苏打饼 2024-11-21 08:48:34

您可以使用 SQlite 管理器创建新的 Sqlite 文件,然后使用这些链接将该数据库复制到您的应用程序中。首先将数据库(SQlite 文件)放入资产文件夹中,然后使用这些答案中显示的方法复制它:

数据库不从资产复制

将您自己的 SQLite 数据库添加到 Android 应用程序

You can create new Sqlite file using SQlite manager and then use these links to copy that database in your application.First put the database (SQlite file)in assets folder and then copy it using method shown in these answers:

Database not copying from assets

adding your own SQLite database to an android application

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