'How to Convert androidx.compose.ui.graphics.Color to android.graphics.Color (int)
How to convert from Compose Color to Android Color Int?
I am using this code for the moment and it seems to be working, I can't seem to find a function to get the Int value of the color
Color.rgb(color.red.toInt(), color.green.toInt(), color.blue.toInt())
where Color.rgb
is a function android.graphics.Color
that returns an Integer color and color variable is just a Compose Color !
Since the float one requires higher API
Linked : How to convert android.graphics.Color to androidx.compose.ui.graphics.Color
Solution 1:[1]
The Android Compose Color
class now has function toArgb(), which converts to Color Int.
The function documentation says:
Converts this color to an ARGB color int. A color int is always in the sRGB color space. This implies a color space conversion is applied if needed.
-> No need for a custom conversion function anymore.
Solution 2:[2]
You can use the toArgb()
method
Converts this color to an ARGB color int. A color int is always in the sRGB color space
Something like:
//Compose Color androidx.compose.ui.graphics
val Teal200 = Color(0xFFBB86FC)
//android.graphics.Color
val color = android.graphics.Color.argb(
Teal200.toArgb().alpha,
Teal200.toArgb().red,
Teal200.toArgb().green,
Teal200.toArgb().blue
)
You can also use:
val color = Teal200.toAGColor()
Solution 3:[3]
Here's a spin on the answer from @gabriele with some Kotlin sugar:
//Compose Color androidx.compose.ui.graphics
val Teal200 = Color(0xFFBB86FC)
fun Color.toAGColor() = toArgb().run { android.graphics.Color.argb(alpha, red, green, blue) }
//android.graphics.Color
val color = Teal200.toAGColor()
Solution 4:[4]
Worked for me convert to Argb, then convert to string:
fun Int.hexToString() = String.format("#%06X", 0xFFFFFF and this)
fun getStringColor(color: Color): String {
return color.toArgb().hexToString()
}
fun someOperation() {
val color = Color.White //compose color
val colorAsString = getStringColor(color)
print(colorAsString)
}
// Result will be: "#FFFFFF"
Solution 5:[5]
What worked for me is:
color.hashCode()
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Peter F |
Solution 2 | |
Solution 3 | dgmltn |
Solution 4 | Jhonatan Sabadi |
Solution 5 | Wai Ha Lee |