如何在 Eclipse 中向 aapt 添加 -0 选项?
我现在这个问题经常出现,但我找不到真正的解决方案。 aapt 需要花费太多时间来压缩图像,这对于大型项目来说是浪费时间。如果您更改 *.xml 文件中的某些内容,将需要很长时间。
有什么解决方案可以将 -0 优化选项添加到 Eclipse 构建中吗?
多谢。
I now this question has pop-ed up a lot but I couldn't find a real solution. The aapt takes too much time compressing images and that is waste of time for large projects. It will take ages if you change something in the *.xml file.
Any solution to add the -0 optimization option to the Eclipse build?
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有办法从 eclipse 向 aapt 传递参数(至少我不知道)。
但是还有另一种解决方案可以解决您的问题,您可以使用 ADT12 中引入的新功能: 更好地控制 ADT 构建过程< /a>.这不会加快编译速度,但会最大限度地减少资源编辑后重新编译资源的次数。
作为另一种解决方案,您可以创建代理脚本/程序来替代
aapt
并使用一个额外参数-0
调用原始aapt
可执行文件。这实际上可以更好地控制 eclipse 如何使用 aapt,但可能会影响其他项目的构建。There is no way to pass parameters to aapt from eclipse (at least I'm not aware about it).
But there is another solution to your problem, you can use new feature introduced in ADT12: Finer Control Over ADT Build Process. This will not speed up compilation, but will minimize number of re-compilation of resources after resource edits.
As another solution, you can create proxy script/program that substitutes
aapt
and calls originalaapt
executable with one extra parameter-0
. This will actually allow for much finer control over how eclipse usesaapt
, but may influence build of other projects.