Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.chiralcode:colorpicker:'
}
<dependency>
<groupId>com.github.chiralcode</groupId>
<artifactId>colorpicker</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.chiralcode" % "colorpicker" % ""
:dependencies [[com.github.chiralcode/colorpicker ""]]
Easy to use, fully functional color picker with compact design based on HSV color model. Project consists two main classes which can be easily extended and suited to user requirements.
Color Picker has been implemented as an extension of a View class. This gives a possibility to use it as any other Android component. Following are the most basic usage examples.
Color Picker can be put in layout xml file just like any other component.
<com.chiralcode.colorpicker.ColorPicker
android:id="@+id/colorPicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
Example can be found in ColorPickerActivity.java file.
Using Color Picker in dialog requires extending AlertDialog class. Listener interface OnColorSelectedListener is required to return selected color value back to the caller.
ColorPickerDialog colorPickerDialog = new ColorPickerDialog(this, initialColor, new OnColorSelectedListener() {
@Override
public void onColorSelected(int color) {
// do action
}
});
colorPickerDialog.show();
See ColorPickerDialog.java for working sample.
Color Picker can be used also on Preferece Screen. Usage is the same as for any other preferences. You can provide default, initial color value by setting android:defaultValue
attribute. Value selected in dialog will be stored under the key provided with android:key
attribute.
<com.chiralcode.colorpicker.ColorPickerPreference
android:defaultValue="0xffffffff"
android:key="preferenceKeyName"
android:title="@string/pref_name"
android:summary="@string/pref_summary" />
Provided demo implementation extends DialogPreference. See ColorPickerPreference.java.
Code is licensed under the Apache License, Version 2.0.