In XML, We can set text color by textColor Attribute. Like android:textColor="#FF0000".
But How do I change it by coding?
I tried something like:
holder.text.setTextColor(R.color.Red);
Where holder is just a class and text is of type TextView. Red is RGB value (#FF0000) set in strings.
But it shows different color rather then red. So I'm wandering that what kind of parameter we can pass in setTextColor()?
In docs, it says int but is it a resource reference value or anything else?


