Generally used classes by Daniel Nilsson. ColorPickerPreference class by Sergey Margaritov. Packed by Sergey Margaritov. Packed again and made Gradle compatible by Vincent Fischer.
- Color Area
- Hue Slider
- Alpha Slider (disabled by default)
- Old & New Color
- Color Preview in Preferences List
Tested with APIv7, but maybe will work with early versions
- You can now install this through Gradle with a simple:
implementation 'net.margaritov.preference.colorpicker.ColorPickerPreference:ColorPickerPreference:1.0.0'
- Paste or clone this library into the
/libsfolder, in the root directory of your project. Create a new folder:/libsif not already present. (This step is not required - only for keeping cleaner project structure) - Edit
settings.gradleby adding the library. You have also define a project directory for the library. Yoursettings.gradleshould look like below:
include ':app', ':ColorPickerPreference'
project(':ColorPickerPreference').projectDir = new File('app/libs/ColorPickerPreference')
- In
app/build.gradleadd the ColorPickerPreference library as a dependency:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:21.0.3'
implementation project(":ColorPickerPreference")
}
- Sync project, clean and build. You can use the
ColorPickerPreferencelibrary as part of your project now.
- Before you can add a
ColorPickerPreferenceto your application, you must first add a library reference: - Clone or download a copy of the library
- Import the library into Eclipse: File menu -> Import -> Existing Project into Workspace
- Open your application's project properties and add a library reference to
ColorPickerPreference
You can see some tests inside
<net.margaritov.preference.colorpicker.ColorPickerPreference
android:key="color1"
android:title="@string/color1_title"
android:summary="@string/color1_summary"
android:defaultValue="@color/pumpkin_orange" <!-- integer resources are also accepted -->
alphaSlider="true" <!-- enable alpha slider via XML -->
/>
To enable Alpha Slider in your code use function:
setAlphaSliderEnabled(boolean enable)

