从 SQLite 数据库检索 TextView 属性
我有 10 个 TextView,它们的文本和可见性存储在 SQLite 数据库中。当活动加载时,我需要获取这些值并将它们应用到 TextView。
我的数据库当前的结构为:_id、textviewID、text、visibility
。访问这些值并将其应用到正确的 TextView 的最佳方法是什么?
I have 10 TextViews, their text and visibility is stored in an SQLite db. When an activity loads, I need to grab these values and apply them to the TextViews.
My db is currently structured as: _id, textviewID, text, visibility
. What would be the best way to access these values and apply them to the correct TextView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这篇文章、这篇文章,当然还有 < a href="http://developer.android.com/guide/topics/data/data-storage.html#db" rel="nofollow noreferrer">Android 开发人员主题,介绍如何从 sqlite 检索值数据库。
对于这些类型的配置,SharedPreferences 是更方便的解决方案。如果您的设计不严格使用本地数据库来存储应用程序首选项,您应该考虑将其作为一个选项。
Take a look at this article, this post, and of course the Android Developer's topic on how to retirieve values from an sqlite db.
For these kind of configurations
SharedPreferences
are way more handy solution. If your design is not strict to use the local database for storing application preferences, you should consider it as an option.