All Projects → veritas1 → Vertical Slide Color Picker

veritas1 / Vertical Slide Color Picker

Licence: mit
🦁 Vertical slide color picker for Android

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Vertical Slide Color Picker

Color Picker For Ios
Colorful: iOS color picker built with Swift.
Stars: ✭ 709 (+3838.89%)
Mutual labels:  ui-components, color-picker
aframe-colorwheel-component
A-Frame Colorwheel. Based on A-Painter and A-Frame Material 🎨🅰
Stars: ✭ 16 (-11.11%)
Mutual labels:  color-picker, ui-components
Flexcolorpicker
Modern color picker library written in Swift 5 that can be easily extended and customized. It aims to provide great UX and performance with stable, quality code.
Stars: ✭ 164 (+811.11%)
Mutual labels:  ui-components, color-picker
Colorpicker
jQuery UI widget for color picking (similar to the one in Microsoft Office 2010).
Stars: ✭ 271 (+1405.56%)
Mutual labels:  ui-components, color-picker
SwiftUI-Color-Kit
SwiftUI Color Pickers, Gradient Pickers And All The Utilities Needed To Make Your Own!
Stars: ✭ 120 (+566.67%)
Mutual labels:  color-picker, ui-components
Vue Swatches
🎨 Help the user picking beautiful colors!
Stars: ✭ 456 (+2433.33%)
Mutual labels:  ui-components, color-picker
Material Sense
A React Material UI template to create rich applications with wizards, charts and ranges
Stars: ✭ 711 (+3850%)
Mutual labels:  ui-components
Fcalertview
FCAlertView is a Flat Customizable AlertView for iOS (Written in Objective C)
Stars: ✭ 777 (+4216.67%)
Mutual labels:  ui-components
Awesome Ui Component Library
Curated list of framework component libraries for UI styles/toolkit
Stars: ✭ 702 (+3800%)
Mutual labels:  ui-components
Glimmer.js
Central repository for the Glimmer.js project
Stars: ✭ 678 (+3666.67%)
Mutual labels:  ui-components
Sugui Design System
A design system template for the SugUI components library based on styleguidist
Stars: ✭ 17 (-5.56%)
Mutual labels:  ui-components
Kallewheel
A custom color wheel extension for Adobe Photoshop
Stars: ✭ 16 (-11.11%)
Mutual labels:  color-picker
Ui Libraries
A collection of UI Frameworks and their platform implementations.
Stars: ✭ 769 (+4172.22%)
Mutual labels:  ui-components
Koyomi
Simple customizable calendar component in Swift 📆
Stars: ✭ 716 (+3877.78%)
Mutual labels:  ui-components
Cariocamenu
The fastest zero-tap iOS menu.
Stars: ✭ 785 (+4261.11%)
Mutual labels:  ui-components
Small Color Picker
jQuery color picker and button styles
Stars: ✭ 16 (-11.11%)
Mutual labels:  color-picker
Re Com
A ClojureScript library of reusable components for Reagent
Stars: ✭ 690 (+3733.33%)
Mutual labels:  ui-components
Colorpicker
A mininal but complete colorpicker desktop app
Stars: ✭ 766 (+4155.56%)
Mutual labels:  color-picker
React Native Calendars
React Native Calendar Components 🗓️ 📆
Stars: ✭ 7,363 (+40805.56%)
Mutual labels:  ui-components
Materialscrollbar
An Android library that brings the Material Design 5.1 sidebar to pre-5.1 devices.
Stars: ✭ 761 (+4127.78%)
Mutual labels:  ui-components

Vertical Slide Color Picker

Demo gif

Example usage

layout.xml

<com.github.veritas1.verticalslidecolorpicker.VerticalSlideColorPicker
		android:id="@+id/color_picker"
		android:layout_width="30dp"
		android:layout_height="100dp"
		colorpicker:borderColor="@android:color/black"
		colorpicker:borderWidth="2dp"
		colorpicker:colors="@array/my_color_array"/>

Activity.java

final VerticalSlideColorPicker colorPicker = (VerticalSlideColorPicker) findViewById(R.id.color_picker);
final View selectedColorView = findViewById(R.id.selected_color);

colorPicker.setOnColorChangeListener(new VerticalSlideColorPicker.OnColorChangeListener() {
	@Override
	public void onColorChange(int selectedColor) {
		selectedColorView.setBackgroundColor(selectedColor);
	}
});

Add to project

Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url "https://jitpack.io" }
	}
}
dependencies {
	compile 'com.github.veritas1:verticalslidecolorpicker:$VERSION' // Check releases
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].