I have a color into the follow format 0xAABBCC as String. I need to convert it into Color, but seems like there is not such method, an
0xAABBCC
String
Color
use Color.parseColor("#AABBCC");
Color.parseColor("#AABBCC");
new Color(Integer.parseInt("AABBCC", 16));