一、背景
在使用Android Studio的时候,偶尔会碰到 AS 报黄色高亮提示,有些强迫症的我还是不希望看到这个黄色的高亮提示,针对这些高亮提醒解决做一个积累,因此编写这篇文章。
后续会持续更新。
二、积累
1、Field can be converted to a local varible
完整说明如下:
This inspection searches for redundant class fields that can be replaced with local variables,if all local usages of a field are preceded by assignments to that field,the field can be removed and its usages replaced with local variables.
大意是检测到这个变量可以使用局部变量替换,建议删除并写成局部变量。
决解方案: 删除协程局部变量,或利用AS快捷键提示生成代码。