All Projects → sephiroth74 → Numberslidingpicker

sephiroth74 / Numberslidingpicker

Licence: mit
Android Number Picker with gestures

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Numberslidingpicker

Flutter app
🔥🔥🔥本项目包括各种基本控件使用(Text、TextField、Icon、Image、Listview、Gridview、Picker、Stepper、Dialog、Slider、Row、Appbar、Sizebox、BottomSheet、Chip、Dismissible、FlutterLogo、Check、Switch、TabBar、BottomNavigationBar、Sliver等)、豆瓣电影、tubitv、每日一文、和天气、百姓生活、随机诗词、联系人、句子迷、好奇心日报、有道精品课、高德定位、音乐播放器🎵、追书神器等板块
Stars: ✭ 2,140 (+851.11%)
Mutual labels:  picker, slider
Bottomsheet
BottomSheet dialog library for Android
Stars: ✭ 219 (-2.67%)
Mutual labels:  material-design, picker
TimeRangePicker
A customizable, easy-to-use, and functional circular time range picker library for Android. Use this library to mimic Apple's iOS or Samsung's bedtime picker.
Stars: ✭ 266 (+18.22%)
Mutual labels:  slider, picker
Materialdatetimepicker
Pick a date or time on Android in style
Stars: ✭ 4,627 (+1956.44%)
Mutual labels:  material-design, picker
Sizeslidebutton
A fun Swift UIControl for picking a size
Stars: ✭ 46 (-79.56%)
Mutual labels:  picker, slider
Slidetoact
A simple 'Slide to Unlock' Material widget for Android, written in Kotlin 📱🎨🦄
Stars: ✭ 783 (+248%)
Mutual labels:  material-design, slider
Pickr
🎨 Flat, simple, multi-themed, responsive and hackable Color-Picker library. No dependencies, no jQuery. Compatible with all CSS Frameworks e.g. Bootstrap, Materialize. Supports alpha channel, rgba, hsla, hsva and more!
Stars: ✭ 3,759 (+1570.67%)
Mutual labels:  material-design, picker
Vuetify Swipeout
👆 A swipe out example built with Vue CLI 3 + Vuetify + Swiper.
Stars: ✭ 117 (-48%)
Mutual labels:  material-design, slider
React Native Paper Dates
Smooth and fast cross platform Material Design date and time picker for React Native Paper
Stars: ✭ 173 (-23.11%)
Mutual labels:  material-design, picker
Yoshino
A themable React component library!Flexible Lightweight PC UI Components built on React! Anyone can generate easily all kinds of themes by it!
Stars: ✭ 216 (-4%)
Mutual labels:  material-design
Fancywalkthrough Android
Fancy Walkthrough is a simple and lightweight library that helps you to create cool and beautiful introduction screens for your apps without writing dozens of lines of code.
Stars: ✭ 218 (-3.11%)
Mutual labels:  material-design
Carbon Ui
React Native Material Design library for all platforms
Stars: ✭ 215 (-4.44%)
Mutual labels:  material-design
Neteasecloudwebapp
This is a vue for NeteaseCloud projects!
Stars: ✭ 2,456 (+991.56%)
Mutual labels:  material-design
Material Backdrop
A simple solution for implementing Backdrop pattern for Android
Stars: ✭ 221 (-1.78%)
Mutual labels:  material-design
Awesome Wanandroid
⚡致力于打造一款极致体验的 http://www.wanandroid.com/ 客户端,知识和美是可以并存的哦QAQn(*≧▽≦*)n
Stars: ✭ 2,525 (+1022.22%)
Mutual labels:  material-design
Angular Ngrx Material Starter
Angular, NgRx, Angular CLI & Angular Material Starter Project
Stars: ✭ 2,623 (+1065.78%)
Mutual labels:  material-design
Ghost Android
🤖 Ghost for Android
Stars: ✭ 215 (-4.44%)
Mutual labels:  material-design
Customfloatingactionbutton
This view is for replacement of standard Floating Action Button from Google Support Library. It is easy to use, customizable and you can also add text to button
Stars: ✭ 222 (-1.33%)
Mutual labels:  material-design
Material Admin
Free Material Admin Template
Stars: ✭ 219 (-2.67%)
Mutual labels:  material-design
Matblazor
Material Design components for Blazor and Razor Components
Stars: ✭ 2,599 (+1055.11%)
Mutual labels:  material-design

Material Number Sliding Picker

A widget that enables the user to select a number from a predefined range. Progress value can be changed using the up and down arrows, click and edit the editable text or swiping up/down or left/right.

Screen shot

Build Status

Maven Central

Installation

Maven

compile 'it.sephiroth.android.library:number-sliding-picker:**version**'

JitPack

Step 1. Add the JitPack repository to your build file:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Step 2. Add the dependency

dependencies {
        implementation 'com.github.sephiroth74:NumberSlidingPicker:Tag'
}

Get the latest version on JitPack

Usage

    <it.sephiroth.android.library.numberpicker.NumberPicker
        style="@style/NumberPicker.Filled"
        app:picker_max="100"
        app:picker_min="0"
        android:progress="50"
        app:picker_stepSize="2"
        app:picker_tracker="exponential"
        app:picker_orientation="vertical"
        android:id="@+id/numberPicker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        ... />

See attrs.xml for a complete list of attributes

Listener

        numberPicker.doOnProgressChanged { numberPicker, progress, formUser ->
            // progress changed
        }
        
        numberPicker.doOnStartTrackingTouch { numberPicker -> 
            // tracking started
        }
        
        numberPicker.doOnStopTrackingTouch { numberPicker -> 
            // tracking ended
        }

License

MIT License

Copyright (c) 2019 Alessandro Crugnola

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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].