码迷,mamicode.com
首页 > 移动开发 > 详细

Android Lint检查

时间:2015-01-27 00:24:51      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

1.Implicitly using the default locale is a common source of bugs: Use toLowerCase(Locale) instead

  toLowerCase(Locale.getDefault())

  clean后就没有warninng了

2..Implicitly using the default locale is a common source of bugs: Use toUpperCase(Locale) instead

    增加Local:toUpperCase(Locale.getDefault());\

3.Replace "..." with ellipsis character (…, …) ?

   用 … 代替 ... ,注意 &#; 这三个符号都不能少 。

4.Type safety: Unchecked cast from Object to Map<String,List<EpisodePo>>
  未找到解决办法
  1:方法上添加@SuppressWarnings("unchecked")
  2:Window->Preferences->Java->Compiler->Errors/Warning->Generic types中Unchecked generic type operation设置为Ignore。

Android Lint检查

标签:

原文地址:http://www.cnblogs.com/liyuejiao/p/4251643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!