I'm getting the above error when I try to run the following code:
int colourInt = Color.parseColor(colour.getHexValue());
The offending hexadecimal value is ee3090b0
. Is there a way I can convert a colour hexdecimal value to its integer equivalent and still retain the alpha value?
I've tried following a suggestion made in this post, but it isn't working...