HoloColorPicker icon indicating copy to clipboard operation
HoloColorPicker copied to clipboard

About bit

Open praveenbbhati opened this issue 10 years ago • 1 comments

It is 16 bit color picker?

praveenbbhati avatar Nov 24 '15 09:11 praveenbbhati

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;
    }

theBlbDan avatar Nov 24 '15 19:11 theBlbDan