SeekBarRangedView

A SeekBarView restrained by a minimum and maximum value.

Лицензия

Лицензия

Категории

Категории

GUI Взаимодействие с пользователем
Группа

Группа

com.github.guilhe
Идентификатор

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

seekbar-ranged-view
Последняя версия

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

3.0.0
Дата

Дата

Тип

Тип

aar
Описание

Описание

SeekBarRangedView
A SeekBarView restrained by a minimum and maximum value.
Ссылка на сайт

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

https://github.com/GuilhE/android-seekbar-ranged-view
Система контроля версий

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

https://github.com/GuilhE/android-seekbar-ranged-view

Скачать seekbar-ranged-view

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

<!-- https://jarcasting.com/artifacts/com.github.guilhe/seekbar-ranged-view/ -->
<dependency>
    <groupId>com.github.guilhe</groupId>
    <artifactId>seekbar-ranged-view</artifactId>
    <version>3.0.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.guilhe/seekbar-ranged-view/
implementation 'com.github.guilhe:seekbar-ranged-view:3.0.0'
// https://jarcasting.com/artifacts/com.github.guilhe/seekbar-ranged-view/
implementation ("com.github.guilhe:seekbar-ranged-view:3.0.0")
'com.github.guilhe:seekbar-ranged-view:aar:3.0.0'
<dependency org="com.github.guilhe" name="seekbar-ranged-view" rev="3.0.0">
  <artifact name="seekbar-ranged-view" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.github.guilhe', module='seekbar-ranged-view', version='3.0.0')
)
libraryDependencies += "com.github.guilhe" % "seekbar-ranged-view" % "3.0.0"
[com.github.guilhe/seekbar-ranged-view "3.0.0"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
com.android.support » support-annotations jar 28.0.0

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

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

SeekbarRangedView

Android Arsenal Preview-Appetize.io

A SeekBar restrained by a minimum and maximum value.

Back in 2014 I contributed to this project by adding a few functionalities to RangeSeekBar.java. The repo had no activity since then, so I've decided to extend it and continue. Credits must be shared with Nick Knudson ;)

Installation

SeekbarRangedView is distributed through Maven Central, Jcenter and Jitpack.

implementation 'com.github.guilhe:seekbar-ranged-view:${LATEST_VERSION}'

Maven Central Download Bintray

Usage

Check out the sample module where you can find a few examples of how to create it by xml or java.

Attributes accepted in xml:

<resources>
        <attr name="min" format="float"/>
        <attr name="max" format="float"/>
        <attr name="currentMin" format="float"/>
        <attr name="currentMax" format="float"/>
        <attr name="rounded" format="boolean"/>
        <attr name="backgroundColor" format="color"/>
        <attr name="backgroundHeight" format="dimension"/>
        <attr name="progressColor" format="color"/>
        <attr name="progressHeight" format="dimension"/>
        <attr name="thumbsResource" format="reference"/>
        <attr name="thumbNormalResource" format="reference"/>
        <attr name="thumbPressedResource" format="reference"/>
</resources>

Example:

<com.github.guilhe.views.SeekBarRangedView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        custom:currentMin="10"
        custom:backgroundColor="#C0C0C0"
        custom:progressColor="@color/progress_bar_line"
        custom:backgroundHeight="10dp"
        custom:progressHeight="20dp"
        custom:rounded="true"/>

For android:layout_height you should use "wrap_content":

Sample1

otherwise you'll be adding "margins" to your view (ex, android:layout_height="200dp"):

Sample2

If you want to change its height, use the backgroundHeight and/or progressHeight attributes instead:

Sample3

There are many methods to help you customize this View by code. For more details checkout the sample app, javadocs or the code itself.

Sample

Sample

Animation last update on September, 2020

Get it on Google Play

Dependencies

Bugs and Feedback

For bugs, questions and discussions please use the Github Issues.

LICENSE

Copyright (c) 2017-present, GuilhE.

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.

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

Версия
3.0.0
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0