Answers for "convert android color to hex"

0

chnage hex color to int color in android

String white = "#ffffff";
int whiteInt = Color.parseColor(white);
Posted by: Guest on October-06-2020
0

convert int color to hex android

String hexColor = String.format("#%06X", (0xFFFFFF & intColor));
Posted by: Guest on January-19-2021

Code answers related to "convert android color to hex"

Browse Popular Code Answers by Language