来自标签“szipinf”的日志的含义是什么?和文本:“初始化充气状态”来自 Logcat
我是一名新的 Android 程序员,所以请原谅我的知识和我的英语,因为它不是我的母语。所以我有一个带有标签:“szipinf”和文本:“初始化充气状态”的日志,我不知道这意味着什么......我还看到它仅在我在手机上测试游戏时出现,在模拟器上它不显示。如果有人能告诉我这意味着什么,我将非常感激。
I am a new programmer for Android, so please excuse my knowledge and also my English because it is not my first language. So I am having a log with the tag:"szipinf" and text:"Initializing inflate state" and I don`t know what it means.... I also seen that it appears only when I test the game on my phone, on the emulator it doesn't show up. I would really appreciate if someone could tell me what it means.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们通过源代码来搜索这条消息,看看是谁打印了日志。
StreamingZipInflater.cpp
:我们要问的下一个问题是在哪里以及如何使用它?在
_CompressedAsset
中,它是Asset
的子类,用于处理压缩文件:更准确地说:
您可以在渲染脚本中找到此类的用法,
BitmapFactory
和其他地方。Let's search this message through the source code to find who prints the log.
StreamingZipInflater.cpp
:The next question we'd like to ask is where and how it's used? In the
_CompressedAsset
which is a subclass ofAsset
for dealing with compressed files:More precisely:
You can find usages of this class in renderscript,
BitmapFactory
and other places.