Lobsterpicker alternatives and similar packages
Based on the "Other Widget" category.
Alternatively, view Lobsterpicker alternatives based on common mentions on social networks and blogs.
-
AndroidSlidingUpPanel
This library provides a simple way to add a draggable sliding up panel (popularized by Google Music and Google Maps) to your Android application. Brought to you by Umano. -
BottomBar
(Deprecated) A custom view component that mimics the new Material Design Bottom Navigation pattern. -
ShortcutBadger
An Android library supports badge notification like iOS in Samsung, LG, Sony and HTC launchers. -
SystemBarTint
[DEPRECATED] Apply background tinting to the Android system UI when using KitKat translucent modes -
TapTargetView
An implementation of tap targets from the Material Design guidelines for feature discovery. -
android-viewbadger
[DEPRECATED] A simple way to "badge" any given Android view at runtime without having to cater for it in layout -
android-stackblur
Android StackBlur is a library that can perform a blurry effect on a Bitmap based on a gradient or radius, and return the result. The library is based on the code of Mario Klingemann. -
android-iconify
Android integration of multiple icon providers such as FontAwesome, Entypo, Typicons,... -
DraggablePanel
DISCONTINUED. Android library used to create an awesome Android UI based on a draggable element similar to the last YouTube graphic component. -
aFileChooser
DISCONTINUED. [DEPRECATED] Android library that provides a file explorer to let users select files on external storage. -
Swipecards
A Tinder-like Android library to create the swipe cards effect. You can swipe left or right to like or dislike the content. -
TourGuide
TourGuide is an Android library that aims to provide an easy way to add pointers with animations over a desired Android View -
StickyGridHeaders
DISCONTINUED. An Android Library that makes it easy to make grid views with sectioned data and headers that stick to the top. -
FloatingView
FloatingView can make the target view floating above the anchor view with cool animation -
TileView
TileView is a subclass of android.view.ViewGroup that asynchronously displays, pans and zooms tile-based images. Plugins are available for features like markers, hotspots, and path drawing. -
Bubbles for Android
Bubbles for Android is an Android library to provide chat heads capabilities on your apps. With a fast way to integrate with your development. -
Android-ActionItemBadge
This library offers a simple method to add a small badge icon to your ActionBar-MenuItem -
RippleView
View that imitates Ripple Effect on click which was introduced in Android L (for Android 2.3+) -
android-sliding-layer-lib
DISCONTINUED. Highly customizable SlidingLayer as you have seen in Wunderlist -
SortableTableView
An Android library containing a simple TableView and an advanced SortableTableView providing a lot of customisation possibilities to fit all needs. -
ScratchView
ScratchView repo is UX Design involving scratch cards like views which are scratched to reveal the information they conceal. -
FabricView
A new canvas drawing library for Android. Aims to be the Fabric.js for Android. Supports text, images, and hand/stylus drawing input. The library has a website and API docs, check it out
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Lobsterpicker or a related project?
README
Lobsterpicker
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
How you can use it:
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" />
summary of options
- color wheel you prefer (wheel only)
- color wheel and a before and after circle in the middle
- color wheel and a slider for switching between different color spaces
- color wheel, a slider for the colorspace and the opacity
- slider only, toggle for 5 different shades you define
- slider only and opacity
color wheel you prefer (wheel only)
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) {
}
});
color wheel and a before and after circle in the middle
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);
color wheel and a slider for switching between different color spaces
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.
color wheel, a slider for the colorspace and the opacity
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);
slider only, toggle for 5 different shades you define
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));
slider only and opacity
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);
Download
Maven:
<dependency>
<groupId>com.larswerkman</groupId>
<artifactId>lobsterpicker</artifactId>
<version>1.0.1</version>
</dependency>
Gradle:
compile 'com.larswerkman:lobsterpicker:1.0.1'
License
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.
Credits
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 [email protected]
Marie Schweiz Freelance android designer [email protected]
*Note that all licence references and agreements mentioned in the Lobsterpicker README section above
are relevant to that project's source code only.