String ColorString = "Color.BLUE";
int colorint = Integer.parseInt(ColorString);
...
views.setTextColor(R.id.tvConfigInput, colorint);
Why does this crash? in the logcat i get java.lang.numberformatexception: Invalid int "Color.BLUE"
I kinda think its at the conversion from string to int it's wrong, because if i just set the int like this:
int colorint = Color.BLUE;
it works.. but what's wrong with it i don't know.
THANKS very much