Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我本质上是在使用列表视图,但正在考虑提供书签功能。我在想我应该在添加书签时将项目属性存储在文件中,并在需要填充书签列表视图时检索。
我想知道是否有一个事实上的标准来实现这一点,或者我是否只遵循“写入文件”和“从文件中读取”的必要风格?
您可以使用 SQLite 数据库(android 支持)来存储书签,而不是普通文件(或 XML)。您可以在此处找到文档。
当我开始玩 android 时,我使用本教程来习惯 android 的 SQLite-Interface。您可能会发现它也很有用。