HoloColorPicker
HoloColorPicker copied to clipboard
About bit
It is 16 bit color picker?
The readme isn't real clear, but a little investigation shows that getColor() returns an int that represents an ARGB color. Since an int is typically 4 bytes, that's 32 bits.
/**
* Get the currently selected color.
*
* @return The ARGB value of the currently selected color.
*/
public int getColor() {
return mCenterNewColor;
}