Is there a tool to find unused resources in an Android project?(是否有工具可以在 Android 项目中查找未使用的资源?)
问题描述
我想在我的 Android 项目中查找任何未使用的资源 - 这包括字符串、ID、可绘制对象、整数等.
I'd like to find any unused resources in my Android project - this includes strings, ids, drawables, integers etc.
目前是否存在执行此操作的工具(最好用于 Eclipse)?
Does a tool to do this currently exist (preferably for Eclipse)?
推荐答案
如果你使用 IntelliJ,它在免费社区版中支持 Android,你可以通过打开生成的 R.java 文件(gen/R.java).未使用的资源将被标记为未在项目中的任何位置引用的警告.
If you use IntelliJ, which has Android support in the free community edition, you can do this by opening the generated R.java file (gen/R.java). The unused resources will be marked with a warning for not being referenced anywhere in your project.
如果 Eclipse 不做同样的事情,我会感到惊讶.
I'd be surprised if Eclipse doesn't do the same thing.
这篇关于是否有工具可以在 Android 项目中查找未使用的资源?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否有工具可以在 Android 项目中查找未使用的资源?
基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01