An open API service indexing awesome lists of open source software.

https://github.com/csdtech/ttb-color-picker

A list of material design colors dialog for android
https://github.com/csdtech/ttb-color-picker

android color-picker color-picker-popup material-color-picker material-colors material-design material-ui

Last synced: 2 months ago
JSON representation

A list of material design colors dialog for android

Awesome Lists containing this project

README

        

# ttb-color-picker
A list of material design colors dialog for android
Screenshot
# Simple Get the Selected Color
```java
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();
```