try this:
String green= "#00FF00";
TextView.setTextColor(Integer.parseInt(green.split("#")[1], 16) + 0xFF000000);
0
solved parse color # to 0x in TextView android
try this:
String green= "#00FF00";
TextView.setTextColor(Integer.parseInt(green.split("#")[1], 16) + 0xFF000000);
0
solved parse color # to 0x in TextView android