Errors In Color Resources
I'm getting lint errors attempting to use color resources. According to the documentation, the following should be valid.
Solution 1:
You need to actually define the color:
<color name="white">#FFFFFF</color>
that is, give its hexadecimal code.
Solution 2:
You should put your file under "values" folder instead of the "color" folder.
Post a Comment for "Errors In Color Resources"