I wanted to use app inventor colors in one of the my extension. but when I try to convert Integer Color to hex. it is throwing an exception - Unknown color
My code -
String color = "#"+Integer.toHexString(Colour).substring(2);
textView.setLinkTextColor(Color.parseColor(color));
I really don't know how to solve this.