一个Android颜色选择器库

一个Android颜色选择器库

Android 其它控件

访问GitHub主页

共138Star

详细介绍

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.

推荐源码