Android:如何处理存储书签?

发布于 2024-08-07 10:00:54 字数 136 浏览 12 评论 0原文

我本质上使用的是列表视图,但正在考虑提供书签功能。我认为我应该在添加书签时将项目属性存储在文件中,并在需要填充书签列表视图时进行检索。

我想知道是否有一个事实上的标准用于实现此目的,或者我是否在必要时遵循“写入文件”和“从文件中读取”的风格?

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 技术交流群。

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

发布评论

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

评论(1

云淡月浅 2024-08-14 10:00:54

您可以使用 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.

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