搞定Android代码Bug必杀技能
作者:石丘 发布时间:[ 2016/5/20 10:38:28 ] 推荐标签:软件测试管理 缺陷管理
Android Lint是另一种静态代码分析检查工具,专门为Android服务。它通过对Android工程源码进行静态代码分析,发现潜在的缺陷和优化改进项。Android Lint可以在correctness正确性、security安全性、performance性能、usability可用性、accessibility可访问性和internationalization国际化这几个层面分析代码。正如官方网站所说,它是非常强大的,能给开发者大量的建议以提高代码质量。
实际开发中通常遇到的主要包含以下几种类型的错误检查:
l Missing translations (and unused translations),缺失的翻译问题。
l Layout performance problems (all the issues the old layout opt tool used to find, and more),布局性能问题。
l Unused resources,未使用的冗余资源问题。
l Inconsistent array sizes (when arrays are defined in multiple configurations),数组大小不一致问题。
l Accessibility and internationalization problems (hardcoded strings, missing content description, etc),可访问性和国际化问题。
l Icon problems (like missing densities, duplicate icons, wrong sizes, etc),图标问题。
l Usability problems (like not specifying an input type on a text field),可用性问题。
l Manifest errors,明显的错误。
Android Lint提供了命令行执行和IDE(如eclipse)集成两种使用方式,并提供了html形式的输出报告。Lint支持自定义分析策略,在eclipse的preference中可以对lint规则进行全局配置,设置所有项目默认的lint检查规则的检查级别等。此外,还可以通过编辑某个项目的lint.xml文件来灵活实现局部规则配置。其基本工作原理如下图所示。
Lint检查结果同样是根据问题严重程度分为多个级别,通常包含:Fatal、Errro、Waring、Information和Ingore等几类。代码检查效果示例如下图所示:
Lint官网地址:http://developer.android.com/intl/zh-cn/tools/help/lint.html
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11