Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/h6ah4i/android-verticalseekbar

Vertical SeekBar class which supports Android 4.x - 9.x.
https://github.com/h6ah4i/android-verticalseekbar

android seekbar vertical

Last synced: 1 day ago
JSON representation

Vertical SeekBar class which supports Android 4.x - 9.x.

Awesome Lists containing this project

README

        

VerticalSeekBar
===============

Vertical SeekBar class which supports Android 4.x - 9.x.

[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.h6ah4i.android.widget.verticalseekbar/verticalseekbar/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.h6ah4i.android.widget.verticalseekbar/verticalseekbar)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-VerticalSeekBar-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/1436)

---

### Screenshots
| ICS | Lollipop | Marshmallow |
|-----------|------------|-------------|
| Example on Android 4.0 | Example on Android 5.0 | Example on Android 5.0 |

### Download the demo app on Google Play
Get it on Google Play

---

Target platforms
---

- from Android 4.0.x (IceCreamSandwich)
- to Android 9.x (Pie)

Latest version
---

- Version 1.0.0 (September 25, 2018)

Getting started
---

This library is published on Maven Central. Just add these lines to `build.gradle`.

```diff
repositories {
+ mavenCentral()
}

dependencies {
+ implementation 'com.h6ah4i.android.widget.verticalseekbar:verticalseekbar:1.0.0'
}
```

Usage
---

### Layout XML

```xml

```

**NOTE: `android:splitTrack="false"` is required for Android N+.**

### Java code

```java
SeekBar seekBar = (SeekBar) findViewById(R.id.mySeekBar);
...
```

License
---

This library is licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0), and contains some source code files delivered from product of Android Open Source Project (AOSP).

See [`LICENSE`](LICENSE) for full of the license text.

Copyright (C) 2015 Haruki Hasegawa

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.