Number Sliding Picker

Sliding Number Picker for Android

Лицензия

Лицензия

Группа

Группа

it.sephiroth.android.library
Идентификатор

Идентификатор

number-sliding-picker
Последняя версия

Последняя версия

1.1.1
Дата

Дата

Тип

Тип

aar
Описание

Описание

Number Sliding Picker
Sliding Number Picker for Android
Ссылка на сайт

Ссылка на сайт

https://github.com/sephiroth74/NumberSlidingPicker
Система контроля версий

Система контроля версий

https://github.com/sephiroth74/NumberSlidingPicker

Скачать number-sliding-picker

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/it.sephiroth.android.library/number-sliding-picker/ -->
<dependency>
    <groupId>it.sephiroth.android.library</groupId>
    <artifactId>number-sliding-picker</artifactId>
    <version>1.1.1</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/it.sephiroth.android.library/number-sliding-picker/
implementation 'it.sephiroth.android.library:number-sliding-picker:1.1.1'
// https://jarcasting.com/artifacts/it.sephiroth.android.library/number-sliding-picker/
implementation ("it.sephiroth.android.library:number-sliding-picker:1.1.1")
'it.sephiroth.android.library:number-sliding-picker:aar:1.1.1'
<dependency org="it.sephiroth.android.library" name="number-sliding-picker" rev="1.1.1">
  <artifact name="number-sliding-picker" type="aar" />
</dependency>
@Grapes(
@Grab(group='it.sephiroth.android.library', module='number-sliding-picker', version='1.1.1')
)
libraryDependencies += "it.sephiroth.android.library" % "number-sliding-picker" % "1.1.1"
[it.sephiroth.android.library/number-sliding-picker "1.1.1"]

Зависимости

compile (13)

Идентификатор библиотеки Тип Версия
androidx.databinding » databinding-common jar 3.5.0-rc03
androidx.databinding » databinding-runtime jar 3.5.0-rc03
androidx.databinding » databinding-adapters jar 3.5.0-rc03
org.jetbrains.kotlin : kotlin-android-extensions-runtime jar 1.3.41
com.github.sephiroth74 » android-target-tooltip jar v2.0.4
com.github.sephiroth74 » AndroidUIGestureRecognizer jar v1.2.7
org.jetbrains.kotlin : kotlin-stdlib-jdk8 jar 1.3.41
io.reactivex.rxjava2 : rxandroid jar 2.1.1
io.reactivex.rxjava2 : rxjava jar 2.2.10
androidx.appcompat » appcompat jar 1.0.2
androidx.core » core-ktx jar 1.2.0-alpha03
com.google.android.material » material jar 1.0.0
com.jakewharton.timber : timber jar 4.7.1

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
1.1.1
1.0.0