如果我不在 Android 中压缩纯文本文件,它是否会在 APK 中被压缩?
我正在与自己争论是否要压缩我的应用程序中包含的大约 1.5 MB 的纯文本文件。我可以使用 zip 将其压缩到 400k 并在应用程序中解压缩,但这只是另一件需要处理的事情。如果我不这样做,它会在 APK 中被压缩吗?我可以把它放在一个特殊的地方来实现这一点吗?我真的只关心下载大小。
I'm debating with myself whether or not to compress a plain text file I'm including in my application that is about 1.5 MB. I can compress it to 400k with zip and unzip it in the application, but that's just one more thing to mess with. If I don't do that, will it get compressed anyway in the APK? Is there a special place I could put it to make this happen? I'm really only concerned with download size.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文件根据其扩展名进行压缩:
来源
如果它不是其中之一,它将在构建 apk 时被压缩。
Files are compressed based on their extension:
Source
If it's not one of those it will be compressed when building the apk.