如何从 Android 应用程序编写 Android 二进制 XML?

发布于 2024-10-31 11:54:10 字数 332 浏览 3 评论 0原文

我有一个应用程序可以从 Web 中提取 XML,并将其缓存在本地。由于与解析 Android 二进制 XML 相比,解析 XML 的成本较高,因此我想将本地副本存储为 Android 二进制 XML。不过,我还没有发现用于动态创建 Android 二进制 XML 的 API,只有 AAPT 使用的 C/C++ 代码。

我采用这种方法的动机是,我当前没有使用所有 XML 值/属性,但可能希望在我的应用程序的未来版本中使用更多这些值/属性,并且不想再次下载所有 XML 数据。

有人可以指出 API 的正确部分以在运行时创建 Android 二进制 XML 吗?

非常感谢,

菲尔·莱洛

I've got an app that pulls XML from the Web, and caches it locally. As parsing XML is expensive compared to parsing Android binary XML, I'd like to store my local copy as Android binary XML. I haven't spotted an API for creating Android binary XML on the fly though, only the C/C++ code used by AAPT.

My motivation for taking this approach is that I don't currently use all the XML values/attributes, but may want to use more of them in a future version of my app, and don't want to download all the XML data again.

Can someone point me at the right bits of the API to create Android binary XML at run-time?

Many thanks,

Phil Lello

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

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

发布评论

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

评论(1

吃素的狼 2024-11-07 11:54:10

Android 二进制 XML 速度更快,因为它经过编译器优化。在运行时,如果没有编译器的实现来为您创建二进制 XML,您就无法创建它。

Android binary XML is faster because it is optimized by the compiler. In runtime, you can't create binary XML without having an implementation of the compiler to do it for you.

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