You can use like using just ImageView and you can get color from any images.
repositories {
mavenCentral() // or jcenter() works as well
}
dependencies {
compile 'com.github.skydoves:colorpickerview:1.0.2'
}<dependency>
<groupId>com.github.skydoves</groupId>
<artifactId>colorpickerview</artifactId>
<version>1.0.2</version>
</dependency>You can use like using just ImageView and you can get color from any images.
First add below XML Namespace inside your XML layout file.
xmlns:app="http://schemas.android.com/apk/res-auto"<com.skydoves.colorpickerview.ColorPickerView
android:id="@+id/colorPickerView"
android:layout_width="300dp"
android:layout_height="300dp"
app:src="@drawable/palette"
app:selector="@drawable/wheel" />app:src="@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.
colorPickerView.setColorListener(new ColorPickerView.ColorListener() {
@Override
public void onColorSelected(int color) {
}
});colorPickerView.getColor() // return int what the last selected colorcolorPickerView.getColorHtml() // return String what the last selected Html color codecolorPickerView.getColorRGB() // return int array the last selected color's RGB value. int[0] : R, int[1] : G, int[2] : BcolorPickerView.setPaletteDrawable(Drawable drawable) // change palette drawable resource (you must initialize at first in xml)colorPickerView.setSelectorDrawable(Drawable drawable) // change selector drawable resource (you must initialize at first in xml)colorPickerView.setSelectorPoint(int x, int y) // moving selector's points (x, y)colorPickerView.selectCenter() // select center of drawable imageCopyright 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.
