In the process of writing Android app need a simple color selector, Android comes with ColorPicker and some of the online colorpicker are too high-end, have realized the color gradient function, I need not so complicated, just want to provide several colors for the user to choose. So you can customize the implementation of a simple colorselector, as follows
How to use this colorselector, see the following code:
Final Colorselectordialog ColorDialog = new Colorselectordialog (Mcontext, Mcolorvalues, mcolorposition); Colordialog.show (); Colordialog.setondismisslistener (new Ondismisslistener () {@Overridepublic void Ondismiss ( Dialoginterface dialog) {//TODO auto-generated Method stubmcolorselected = Colordialog.getcolor (); mcolorposition = Colordialog.getposition ();}});
Mcolorvalues and Mcolorposition specific is what, if you use the words will be clear, not much to say. Download the accessory if you need it.
Http://files.cnblogs.com/recwert/ColorSelector.rar
Custom implementation Simple Android Color picker (with source code)