changing text color for android app [closed]
I currently have an app that displays the time. I want to change the text to white so i have
<DigitalClock开发者_运维知识库 android:textColor = "@androidcolor/white">
for some reason when i put this line in the XML code, my Graphical layout shows the time white but i get an error saying "Error: No resource found that matches the given name (at 'textColor' with value '@androidcolor/white"
Any suggestions are appreciated
You probably meant to write @android:color/white
?
精彩评论