Android: Advanced ColorPickerDialog

I am looking for an advanced Android color picker dialog. The standard color selection from the Demos API and the examples from this post are not entirely acceptable to me. I would like it to look like this: this is an image . Are there any open source color pickers that look like this?

UPDATE: My main goal is to make Color Picker easy to use: it would be great if the user had to click once to select any color, and all possible colors are presented. In the color pickers from the examples I have given, two clicks are required to select a color and are too complicated for the average user.

+8
android android canvas
source share
3 answers

This one looks pretty close to what you want and is FOSS: https://github.com/LarsWerkman/HoloColorPicker

enter image description here

+7
source share

how about this solution?

look at the screenshot:

enter image description here

source code is here .

+6
source share

Have you tried Android Color Picker ? If you need to show the RGB code of the currently selected color, just change the dialog by adding a TextView and adding an update to it in the ColorChangeListener (or whatever it calls)

Or take a look at the CyanogenMod color picker dialog Color-picker Dialog of CyanogenMod

Here's the link to the source: CyanogenMod color-picker on GitHub

+3
source share

All Articles