“Field can be converted to a local variable” message appearing when setting Android ActionBar colour
What the warning is telling you is that actionBarColor shouldn’t be a global variable (i.e. a field), because it’s only used in one method (onCreate). This is good advice: you should...