使用 PreferenceActivity 并将首选项保存在 ContentProvider 中,如何?
Jeff Sharkey 在 这篇文章 展示了如何通过修改 PreferenceActivity 在数据库中创建保存应用程序首选项。
它说我也可以使用 ContentProvider。
您能给我一个如何将首选项从 PreferenceActivity 保存到 ContentProvider 的示例吗?
谢谢
Jeff Sharkey in this post shows how to create save application preferences in database by hack on PreferenceActivity.
It said i can use a ContentProvider, too.
Can you give me an example on how to save preferences from PreferenceActivity to ContentProvider?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ContentProvider
是一种编码协议,如何访问来自各种存储类型的数据,例如来自数据库、文件、xml、从网络获取的数据等。我不会搜索这个示例,因为不建议这样做对于首选项。只需坚持使用内置方式或您在链接资源上看到的方式即可。
A
ContentProvider
is a sort of coding protocol how to access data from various storage types, such as data from database, files, xml, fetched from network etc.I would not search for this example as it's not advised for Preferences. Just stick either with the inbuilt way, or how you have seen on the linked resources.