Android: advanced ColorPickerDialog

15,534

Solution 1

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

enter image description here

Solution 2

how about this solution ?

look at the screenshot:

enter image description here

source code here .

Solution 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

Share:
15,534

Related videos on Youtube

Yury Pogrebnyak
Author by

Yury Pogrebnyak

Updated on October 23, 2022

Comments

  • Yury Pogrebnyak
    Yury Pogrebnyak less than a minute

    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.

  • IgorGanapolsky
    IgorGanapolsky over 9 years
    Where is the support for black & white colors? I don't see them here.
  • android developer
    android developer over 9 years
    @IgorGanapolsky I haven't read the code of what i've posted about, so i have no idea how it works.
  • xmen over 9 years
    Wrong link, the CyanogenMod color picker is not same as shown in above screenshot.
  • xmen over 9 years
    seems to be bad color picker, how would you suppose to see the color while you will have your finger or thumb on it.
  • Anirudh
    Anirudh about 9 years
    Awesome dude, Helped me a lot

Related