Skip to content

CrippleSd/ttb-color-picker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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();