Skip to content

MrBIMC/colorpicker

 
 

Repository files navigation

Color Picker

Android Arsenal https://img.shields.io/github/tag/QuadFlask/colorpicker.svg?label=maven

icon

simple android color picker with color wheel and lightness bar.

App on PlayStore

market link: https://play.google.com/store/apps/details?id=com.flask.colorpicker.sample

Demo video

Youtube

Screenshot

WHEEL_TYPE.FLOWER

screenshot3.png

WHEEL_TYPE.CIRCLE

screenshot.png

How to add dependency?

This library is not released in Maven Central, but instead you can use JitPack

add remote maven url

repositories {
	maven {
		url "https://jitpack.io"
	}
}

then add a library dependency

dependencies {
	compile 'com.github.QuadFlask:colorpicker:[latestVersion]'
}

or, you can manually download aar and put into your project's libs directory.

and add dependency

dependencies {
	compile(name:'[arrFileName]', ext:'aar')
}

check out [latestVersion] at releases

Usage

ColorPickerDialogBuilder
	.with(context)
	.setTitle("Choose color")
	.initialColor(currentBackgroundColor)
	.wheelType(ColorPickerView.WHEEL_TYPE.FLOWER)
	.density(12)
	.setOnColorSelectedListener(new OnColorSelectedListener() {
		@Override
		public void onColorSelected(int selectedColor) {
			toast("onColorSelected: 0x" + Integer.toHexString(selectedColor));
		}
	})
	.setPositiveButton("ok", new ColorPickerClickListener() {
		@Override
		public void onClick(DialogInterface dialog, int selectedColor, Integer[] allColors) {
			changeBackgroundColor(selectedColor);
		}
	})
	.setNegativeButton("cancel", new DialogInterface.OnClickListener() {
		@Override
		public void onClick(DialogInterface dialog, int which) {
		}
	})
	.build()
	.show();

To do

  • gradle support
  • performance improvement
  • refactoring

License

Copyright 2014-2015 QuadFlask

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

color picker for android

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%