简体   繁体   中英

how to convert rgb color to hex color - kotlin

This is what I do

val color = String.format("0XFF%02x%02x%02x", r, g, b)

this returns me a string "0XFFhexcode" I want to convert it to long, to store it and then use it as a color

color.toLong()

I have the following error

java.lang.NumberFormatException: For input string: 0XFFhexcode

This code might help you:

Integer.toHexString(Color.rgb(r, g, b))

You can do it simply like the following:

val rgb =  Color.rgb(red, green, blue)
val hex = String.format("#%06X", 0xFFFFFF and rgb)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM