Skip to content

🎨 The most standard and powerful colorpicker library.

License

Notifications You must be signed in to change notification settings

c4software/ColorPickerView

Repository files navigation

ColorPickerView

LicenseBuild Status
You can use like just ImageView and you can get HSV colors, RGB values, Html color codes
from your gallery pictures or custom images just touch.

555777

Multi-ColorPickerView

You can get colors using multi selectors.
At Multi-ColorPicker you can get more specialized library in multi-coloring.

111

Including in your project

build.gradle

repositories{mavenCentral() // or jcenter() works as well } dependencies{compile'com.github.skydoves:colorpickerview:1.0.8' }

or Maven

<dependency> <groupId>com.github.skydoves</groupId> <artifactId>colorpickerview</artifactId> <version>1.0.8</version> </dependency>

Usage

You can use like using just ImageView and you can get color from any images.

Add XML Namespace

First add below XML Namespace inside your XML layout file.

xmlns:app="http://schemas.android.com/apk/res-auto"

ColorPickerView in layout

<com.skydoves.colorpickerview.ColorPickerView android:id="@+id/colorPickerView"android:layout_width="300dp"android:layout_height="300dp"app:palette="@drawable/palette"app:selector="@drawable/wheel" />

Attribute description

app:palette="@drawable/palette" // set palette image 
app:selector="@drawable/wheel" // set selector image. This isn't required always. If you don't need, don't use. 

Color Selected Listener

colorPickerView.setColorListener(newColorListener(){@OverridepublicvoidonColorSelected(intcolor){LinearLayoutlinearLayout = findViewById(R.id.linearLayout); linearLayout.setBackgroundColor(color)} });

Methods

MethodsReturnDescription
getColor()intthe last selected color
getColorHtml()Stringthe last selected Html color code
getColorRGB()int[3]the last selected color's RGB value.
int[0] : R, int[1] : G, int[2] : B
setPaletteDrawable(Drawable drawable)voidchange palette drawable resource
setSelectorDrawable(Drawable drawable)voidchange selector drawable resource
setSelectorPoint(int x, int y)voidmoving selector at point(x, y)
selectCenter()voidselect center of drawable image
setACTION_UP(Boolean)voidColorListener only listening when ACTION_UP.

License

Copyright 2017 skydoves Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

🎨 The most standard and powerful colorpicker library.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java100.0%