Color Pickers from Google

There are a lot of Color Pickers available, some very nice. The most difficult thing is to know that there are and where they are. Here a first collection, written by Google. Checkout in github repository last version and last document about usage. Google Stock Calendar You can find source in Color Picker repository . You can download and use it It is very simple to use. You have just to provide an array of colors. ColorPickerDialog colorcalendar = ColorPickerDialog.newInstance( R.string.color_picker_default_title, mColor, 0, 5, Utils.isTablet(this)? ColorPickerDialog.SIZE_LARGE : ColorPickerDialog.SIZE_SMALL); colorcalendar.show(getFragmentManager(),"cal"); mColor is an array of Color. public static int[] colorChoice(Context context){ int[] mColorChoices=null; String[] color_array = context.getResources(). getStringArray(R.array.default_color_choice_values); if (color_array!=null &...