Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
929 views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...