PickedColor
Represents the currently selected color in the picker.
This class encapsulates the color as an ARGB integer, its alpha component (scaled to 0-255 range), and its HSV (Hue, Saturation, Value) representation. It provides methods to set the color from various sources (integer, HSV components) and retrieve its components.
The alpha value is stored internally as an integer from 0 to 255, but some methods may accept or return it as a percentage (0-100). The HSV components are stored as a float array:
mHsv[0]
(Hue): 0-360 degreesmHsv[1]
(Saturation): 0.0-1.0mHsv[2]
(Value/Brightness): 0.0-1.0