Skip to content

chriscross12324/Pikolo

 
 

Repository files navigation

Pikolo

Build Status Download

An android color picker library

previewpreviewpreview

Download

repositories {
  jcenter() // or mavenCentral()
}

dependencies {
  implementation 'com.github.madrapps:pikolo:2.0.1'
}

Features

  • Includes HSLColorPicker and RGBColorPicker
  • Full customization of the various parts of the color picker (like arc length, arc position, indicator size, color, etc...) using XML attributes

Usage

Add the HSLColorPicker or RGBColorPicker view to your layout and use it in code as below:

final ColorPicker colorPicker = findViewById(R.id.colorPicker);
colorPicker.setColorSelectionListener(new SimpleColorSelectionListener() {
  @Override
  public void onColorSelected(int color) {
    // Do whatever you want with the color
    imageView.getBackground().setColorFilter(color, PorterDuff.Mode.MULTIPLY);
  }
});

License

Pikolo by Madrapps is licensed under a Apache License 2.0.

About

An android color picker library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 99.9%
  • HTML 0.1%