8

I'm looking for an advanced Android color picker dialog. The standard color picker from the API Demos and examples from this post aren't quite acceptable to me. I'd like it to look like this: this image. Are there any open source color pickers that look like that?

UPDATE: My primary goal is to make the Color Picker easy to use: it'd be great if the user only needs to click once to pick any color, and all possible colors are represented. The Color Pickers from the examples I've mentioned require two clicks to pick a color and are too complicated for the average user.

Community
  • 1
  • 1
Yury Pogrebnyak
  • 4,093
  • 9
  • 45
  • 78

3 Answers3

7

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

enter image description here

CjS
  • 2,037
  • 2
  • 21
  • 29
6

how about this solution ?

look at the screenshot:

enter image description here

source code here .

android developer
  • 114,585
  • 152
  • 739
  • 1,270
3

Have you tried Android Color Picker? If you need to show the RGB-Code of the currently selected color, just modify the dialog by adding an TextView and adding an update to it in the ColorChangeListener (or whatever it's called)

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

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

hnzlmnn
  • 393
  • 2
  • 14