This might be a stupid question but I\'m surprised that Paint class has no setColor(Color c) method. I want to do the following:
Paint
setColor(Color c)
pu
Any color parse into int simplest two way here:
color
int
1) Get System Color
int redColorValue = Color.RED;
2) Any Color Hex Code as a String Argument
int greenColorValue = Color.parseColor("#00ff00")
MUST REMEMBER in above code Color class must be android.graphics...!
Color
android.graphics...