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.format("0x%08X", (0xFFFFFFFF & intColor));
But i got transparent color.please help me
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…