android studio lint基本解析
可访问性(accessibility) 1、Image without contentDescription图像没有内容描述 这个是需要对图片进行一个描述,不然会有警告,一般情况下进行统一的标识加入 android:c ontentDescription="@string/abc 正确性(correctness) 2、Attribute unused on older versions 旧版本中未使用的属性 3、Class is not registered in the manifest 类没有在清单中注册 没有注册的activity 4、Duplicate ids across layouts combined with include tags布局中重复的ids与包含标签相结合 引用的布局和父布局包含相同的id 5、Implied locale in date format 使用日期格式的默示语言环境 http://blog.csdn.net/revival_liang/article/details/51812723 时间声明问题 SimpleDateFormat format...