Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/h6ah4i/android-verticalseekbar
- Owner: h6ah4i
- License: apache-2.0
- Created: 2015-01-11T14:51:55.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2023-08-21T04:59:07.000Z (over 1 year ago)
- Last Synced: 2024-12-25T11:13:54.469Z (9 days ago)
- Topics: android, seekbar, vertical
- Language: Java
- Homepage:
- Size: 572 KB
- Stars: 507
- Watchers: 14
- Forks: 96
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 |
|-----------|------------|-------------|
| | | |### Download the demo app 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 athttp://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.