CrippleSd / ttb-color-picker

A list of material design colors dialog for android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ttb-color-picker

A list of material design colors dialog for android Screenshot

Simple Get the Selected Color

new ColorPickerDialog(this)
  .setTitle("Select A Text Color")
  .setOnColorSelectListener(new OnColorSelectedListener(){
      @Override
      public void onColorSelected(int color, String hexColor, int[] rgb){
         text.setTextColor(color);
    }
}).show();

About

A list of material design colors dialog for android

License:Apache License 2.0


Languages

Language:Java 100.0%