Designed by Marie Schweiz, Developed by Lars Werkman
Lobsterpicker is a library for android material design made to support apps and developers if a color should be choosen by a user. The library is offering a dialog with all shades of material design colors. Give it a try and download our demo app via google play
Include one or multiple of the views inside of you layout:
<com.larswerkman.lobsterpicker.LobsterPicker
android:id="@+id/lobsterpicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<com.larswerkman.lobsterpicker.sliders.LobsterShadeSlider
android:id="@+id/shadeslider"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<com.larswerkman.lobsterpicker.sliders.LobsterOpacitySlider
android:id="@+id/opacityslider"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
LobsterPicker lobsterPicker = (LobsterPicker) findViewById(R.id.lobsterpicker);
//To retrieve the selected color use
lobsterPicker.getColor();
//You'r also able to add a listener
lobsterPicker.addOnColorListener(new OnColorListener() {
@Override
public void onColorChanged(@ColorInt int color) {
}
@Override
public void onColorSelected(@ColorInt int color) {
}
});
By default this is disabled your able to enable it in xml
app:color_history_enabled="true"
Or in Java
LobsterPicker lobsterPicker = (LobsterPicker) findViewById(R.id.lobsterpicker);
//To enable to color feedback use
lobsterPicker.setColorHistoryEnabled(true);
//To set a previous picked color or reference color use
lobsterPicker.setHistory(Color.RED);
To connect a slider to the color wheel use
LobsterPicker lobsterPicker = (LobsterPicker) findViewById(R.id.lobsterpicker);
LobsterShadeSlider shadeSlider = (LobsterShadeSlider) findViewById(R.id.shadeslider);
//To connect them
lobsterpicker.addDecorator(shadeSlider);
All sliders implement the ColorDecorator
interface, which enables them to manipulate the user selected color.
Important to notice is the sequence you add decorators, because the first decorator that is added will be the first to manipulate the color.
To connect both the LobsterShadeSlider
and LobsterOpacitySlider
isn't any diffent then the previous mentioned method
LobsterPicker lobsterPicker = (LobsterPicker) findViewById(R.id.lobsterpicker);
LobsterShadeSlider shadeSlider = (LobsterShadeSlider) findViewById(R.id.shadeslider);
LobsterOpacitySlider opacitySlider = (LobsterOpacitySlider) findViewById(R.id.opacityslider);
//To connect them
lobsterpicker.addDecorator(shadeSlider);
lobsterpicker.addDecorator(opacitySlider);
The LobsterShadeSlider
can also be used as a standalone color selector.
//To retrieve to color is the same mehtod used for the LobsterPicker
shadeSlider.getColor();
To use your own colors this can be done by implementing the ColorAdapter
interface.
Or use the existing BitmapColorAdapter
which takes a Drawable as color source.
lobsterPicker.setColorAdapter(new BitmapColorAdapter(this, R.drawable.default_shader_pallete));
Just like for the LobsterPicker
you have to add the opacity slider as a decorator
LobsterShadeSlider shadeSlider = (LobsterShadeSlider) findViewById(R.id.shadeslider);
LobsterOpacitySlider opacitySlider = (LobsterOpacitySlider) findViewById(R.id.opacityslider);
//To connect them
shadeSlider.addDecorator(opacitySlider);
Maven:
<dependency>
<groupId>com.larswerkman</groupId>
<artifactId>lobsterpicker</artifactId>
<version>1.0.1</version>
</dependency>
Gradle:
compile 'com.larswerkman:lobsterpicker:1.0.1'
Copyright (C) 2015 Marie Schweiz & Lars Werkman
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.
This library is written and developed by Lars Werkman. For feedback, requests and collaboration please use Github or write us.
Lars Werkman Freelance android developer werkman.lars@gmail.com
Marie Schweiz Freelance android designer marie.schweiz@gmail.com