从 SQlite 检索的数据如何存储为“收藏夹列表”在安卓中?
我正在开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将一个名为
favourites
的新表添加到您的 SQLite 数据库中,并将recipe_id 存储在其中即可。Just add a new table to your SQLite database called
favourites
, and store the recipe_id in there.您可以使用 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