Field can be converted to a local variable more... (Ctrl+F1)

用 Android Studio 开发 项目时你可能会注意到这样的情况,一些变量会显示暗黄的的高亮提示Field can be converted to a local variable more... (Ctrl+F1),有些强迫症的我还是不希望看到这个黄色的高亮。用谷歌搜到了一些解答。

Field can be converted to a local variable more... (Ctrl+F1)

解答

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

意思是检测到这个变量可以使用局部变量替换不用全局定义,建议删除并写成局部变量。

解决方案

把全局变量删除,在使用的地方定义即可,不用全部都使用全局定义变量。