I mean something like:
Error!
In my experience, I stored color in strings.xml look like
#ffffff
When I have an View and set `
nameView.setBackgroundColor(R.color.name_color);
it's OK.
But when I set color for text look like
name_TextView.setTextColor(R.color.name_color);
it's not Effect.
If you get the same problem, just set
name_TextView.setTextColor(Color.parseColor("code hexa of color you want"));
Hope it help.