Android:如何处理存储书签?
我本质上使用的是列表视图,但正在考虑提供书签功能。我认为我应该在添加书签时将项目属性存储在文件中,并在需要填充书签列表视图时进行检索。
我想知道是否有一个事实上的标准用于实现此目的,或者我是否在必要时遵循“写入文件”和“从文件中读取”的风格?
I am essentially using a listview but am looking at providing a bookmark functionality. I am thinking that I should store the item attributes in a file when bookmarked and retrieve when required to populate a bookmark listview.
I was wondering if there is a de facto standard used in achieving this or do I follow just the "writing into a file" and "reading from a file" when necessary style?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SQLite 数据库(android 支持)来存储书签,而不是纯文件(或 XML)。您可以在此处找到文档。
当我开始使用 android 时,我使用这个 教程 来习惯 SQLite 接口安卓的。您可能会发现它也很有用。
Instead of plain files (or XML) you could use a SQLite database (android supports that) to store the bookmarks. You'll find the documentation here.
When I started playing around with android, I used this Tutorial to get used to the SQLite-Interface of android. You might find it useful, too.