从 SQLite 数据库检索 TextView 属性

发布于 2024-11-04 03:16:53 字数 179 浏览 1 评论 0原文

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

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

发布评论

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

评论(1

平生欢 2024-11-11 03:16:53

看看这篇文章这篇文章,当然还有 < 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.

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