ColorPickerPreference
A library that lets you implement ColorPickerView, ColorPickerDialog, ColorPickerPreference.
Could get HSV color, RGB values, Html color code from your gallery pictures or custom images just by touching.
Including in your project
build.gradle
Usage
Add following XML namespace inside your XML layout file.
ColorPickerView in XML layout
We can use ColorPickerView
without any customized attributes.
This ColorPickerView
will be initialized with the default HSV color palette and default selector.
Attribute descriptions
We can customize the palette image and selector or various options using the below attributes.
ColorListener
ColorListener
is invoked when tapped by a user or selected a position by a function.
ColorEnvelope
ColorEnvelope
is a wrapper class of color models for providing more variety of color models.
We can get HSV color value, Hex string code, ARGB value from the ColorEnvelope
.
ColorEnvelope Listener
ColorEnvelopeListener
extends ColorListener
and it provides ColorEnvelope
as a parameter.
Palette
If we do not set any customized palette, the default palette drawable is the ColorHsvPalette
.
We can move and select a point on the palette using a specific color using the below methods.
We can change the default palette as a desired image drawable using the below method.
But if we change the palette using another drawable, we can not use the selectByHsvColor
method.
If we want to change back to the default palette, we can change it using the below method.
ActionMode
ActionMode
is an option restrict to invoke the ColorListener
by user actions.
Debounce
Only emits color values to the listener if a particular timespan has passed without it emitting using debounceDuration
attribute.
We can set the debounceDuration
on our xml layout file.
Or we can set it programmatically.
Create using builder
This is how to create ColorPickerView
's instance using ColorPickerView.Builder
class.
Restore and save
This is how to restore the state of ColorPickerView
.
setPreferenceName()
method restores all of the saved states (selector, color) automatically.
This is how to save the states of ColorPickerView
.
setLifecycleOwner()
method saves all of the states automatically when the lifecycleOwner is destroy.
Or we can save the states manually using the below method.
Manipulate and clear
We can manipulate and clear the saved states using ColorPickerPreferenceManager
.
Palette from Gallery
Here is how to get a bitmap drawable from the gallery image and set it to the palette.
Declare below permission on your AndroidManifest.xml
file.
The below codes will start the Gallery and we can choose the desired image.
In the onActivityResult
, we can get a bitmap drawable from the gallery and set it as the palette. And We can change the palette image of the ColorPickerView
using the setPaletteDrawable
method.
ColorPickerPreference
ColorPickerPreference is used in PreferenceScreen and shows ColorPickerDialog if be clicked.
customizing
If you want to customizing ColorPickerDialog in ColorPickerPreference, you could get ColorPickerDialog.Builder
using getColorPickerDialogBuilder()
method.
AlphaSlideBar
AlphaSlideBar changes the transparency of the selected color.
AlphaSlideBar
in XML layout
We can attach and connect the AlphaSlideBar
to our ColorPickerView
using attachAlphaSlider
method.
We can make it vertically using the below attributes.
BrightnessSlideBar
BrightnessSlideBar changes the brightness of the selected color.
BrightnessSlideBar
in XML layout
We can attach and connect the BrightnessSlideBar
to our ColorPickerView
using attachBrightnessSlider
method.
We can make it vertically using the below attributes.
ColorPickerDialog
ColorPickerDialog
can be used just like an AlertDialog and it provides colors by tapping from any drawable.
we can get an instance of ColorPickerView
from the ColorPickerView.Builder
and we can customize it.
FlagView
We can implement showing a FlagView
above and below on the selector.
This library provides BubbleFlagView
by default as we can see the previews.
Here is the example code for implementing it.
We can also fully customize the FlagView
like below.
First, We need a customized layout like below.
Second, we need to create a class that extends FlagView
. Here is an example code.
And last, set the FlagView
to the ColorPickerView
using the setFlagView
method.
FlagMode
FlagMode
is an option to decides the visibility action of the FlagView
.
AlphaTileView
AlphaTileView
visualizes ARGB colors over the view.
If we need to represent ARGB colors on the general view, it will not be showing accurately. Because a color will be mixed with the parent view's background color. so if we need to represent ARGB colors accurately, we can use the AlphaTileView
.
ColorPickerView Methods
Methods | Return | Description |
---|---|---|
getColor() | int | gets the last selected color. |
getColorEnvelope() | ColorEnvelope | gets the ColorEnvelope of the last selected color. |
setPaletteDrawable(Drawable drawable) | void | changes palette drawable manually. |
setSelectorDrawable(Drawable drawable) | void | changes selector drawable manually. |
setSelectorPoint(int x, int y) | void | selects the specific coordinate of the palette manually. |
selectByHsvColor(@ColorInt int color) | void | changes selector's selected point by a specific color. |
selectByHsvColorRes(@ColorRes int resource) | void | changes selector's selected point by a specific color using a color resource. |
setHsvPaletteDrawable() | void | changes the palette drawable as the default drawable (ColorHsvPalette). |
selectCenter() | void | selects the center of the palette manually. |
setActionMode(ActionMode) | void | sets the color listener's trigger action mode. |
setFlagView(FlagView flagView) | void | sets FlagView on ColorPickerView . |
attachAlphaSlider | void | linking an AlphaSlideBar on the ColorPickerView . |
attachBrightnessSlider | void | linking an BrightnessSlideBar on the ColorPickerView . |
ColorPickerPreference
Methods | Return | Description |
---|---|---|
setColorPickerDialogBuilder(ColorPickerDialog.Builder builder) | void | sets ColorPickerDialog.Builder as your own build |
getColorPickerDialogBuilder() | ColorPickerDialog.Builder | returns ColorPickerDialog.Builder |