I have RGB integer value (ex:00255), i want to convert into this format 0XFF0000FF .I used this part of code,
int intColor=00255; String hexColor = String.fo
If you have an RGB color white : FFFFFF
0x + ?? + FFFFFF will be the final format where ?? is the alpha transparency FF means totally opaque 00 means totally transparent
Opaque white :0xFFFFFFFF
Transparent White : 0x00FFFFFF