android内容提供程序可以用于简单数据,例如名称:值对

发布于 2024-10-15 00:50:56 字数 158 浏览 1 评论 0原文

我正在编写一个小型功能控制应用程序,其中存储和管理了多个功能设置。所有应用程序都使用我的 featurecontrol-application 来检索设置,例如 feature-x 是否启用或 feature-x-value 是什么。我可以为此使用 contentprovider 还是有其他替代方案?

I am writing a small featurecontrol-application, which has several feature settings stored and managed. All applications use my featurecontrol-application to retrieve settings like whether feature-x is enabled or not or what is feature-x-value . Can I use contentprovider for this or are there any other alternatives?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清音悠歌 2024-10-22 00:50:56

如果您有多个应用程序,并且它们必须共享相同的数据(内容),则使用 ContentProvider 在我看来是非常好的且合乎逻辑的解决方案。

内容提供者是实现不同应用程序之间通信的一种选择。但它不需要DB作为骨干。您可以使用常量表代替数据库。要创建 ContentProvider,您只需要重写几个函数,对使用 DB 没有任何限制。

另一种选择是通过 AIDL 实现 IPC。这也为您提供了共享对象的接口,但在我看来,因为您只需要共享常量,ContentProvider 是更简单、更快的解决方案。

If you have several applications, and they have to share same data (content) usage of ContentProvider looks to me as quite good and logical solution.

Content provider is one option to implement communication between different applications. But it does not need DB as a backbone. Instead of DB you can use table of constants. To create ContentProvider you just need to override several functions, no constraint is imposed to use DB.

Another option is to implement IPC via AIDL. That also gives you interface to share objects, but IMO since you just need to share constants ContentProvider is easier and faster solution.

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