如何从 Android 应用程序编写 Android 二进制 XML?
我有一个应用程序可以从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.