Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Color Picker [closed]

Does anyone know of a quick color picker widget that I could grab to use in my application?

I've seen one in a few different applications that have a wheel with colors, and that you tap in the center to select, but I'm not sure where to find it.

Any color picker would be fine though.

like image 204
Kleptine Avatar asked Mar 14 '10 14:03

Kleptine


3 Answers

The wheel color picker that you are talking about is in the API Demos.

https://android.googlesource.com/platform/development/+/master/samples/ApiDemos/src/com/example/android/apis/graphics/ColorPickerDialog.java

like image 74
Mark B Avatar answered Nov 07 '22 22:11

Mark B


Created ColorPickerPreference to use in preferences. Used above submitted color-picker-view can find it here: https://github.com/attenzione/android-ColorPickerPreference

Also will share similar ColorPickerPreference with Rotary Picker (used it before)

like image 23
Attenzione Avatar answered Nov 07 '22 22:11

Attenzione


This one from Yuku ( http://code.google.com/p/android-color-picker/ ) is really kewl. It's open source under Apache license, and is much nicer than the Android sample one. It's also a library project, so it's really simple to integrate. I've just added it last week to DigiClock widget, and so far my users are impressed!

like image 20
DavidG Avatar answered Nov 07 '22 20:11

DavidG