Popularity
1.9
Growing
Activity
0.0
Stable
48
4
9

Description

Beautiful Color Picker dialog for Android 9+ based on VintageChroma by Pavel Sikun.

Code Quality Rank: L5
Programming language: Java
License: GNU General Public License v3.0 only
Tags: Dialog Widget     Colors     Color Picker    
Latest version: v1.1.5

Color-O-Matic alternatives and similar packages

Based on the "Colors" category.
Alternatively, view Color-O-Matic alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Color-O-Matic or a related project?

Add another 'Colors' Package

README

ko-fi

Color-O-Matic

Android Arsenal

Beautiful Color Picker dialog for Android 9+ based on VintageChroma by Pavel Sikun. Screenshots at the end of the file.

Repository

Add this in your root build.gradle file (not your module build.gradle file):

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

Dependency

Add this to your module's build.gradle file (make sure the version matches the JitPack badge above):

dependencies {
    ...
    compile 'com.github.GrenderG:Color-O-Matic:1.1.5'
}

Usage

To display a color picker DialogFragment:

  new ColorOMaticDialog.Builder()
      .initialColor(Color.WHITE)
      .colorMode(ColorMode.ARGB) // RGB, ARGB, HVS
      .indicatorMode(IndicatorMode.HEX) // HEX or DECIMAL; Note that using HSV with IndicatorMode.HEX is not recommended
      .onColorSelected(new OnColorSelectedListener() {
          @Override
          public void onColorSelected(@ColorInt int i) {
              // do your stuff
          }
      })
      .showColorIndicator(true) // Default false, choose to show text indicator showing the current color in HEX or DEC (see images) or not
      .create()
      .show(getSupportFragmentManager(), "ColorOMaticDialog");

See sample project for more info.

Screenshots