All Projects → h6ah4i → Android Verticalseekbar

h6ah4i / Android Verticalseekbar

Licence: apache-2.0
Vertical SeekBar class which supports Android 4.x - 9.x.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Android Verticalseekbar

Arcseekbar
🎡 ArcSeekBar 一个弧形可拖动进度条控件。弧形大小,弧度,颜色渐变等配置完全可定制化
Stars: ✭ 115 (-73.32%)
Mutual labels:  seekbar
Bezierseekbar
Beautiful custom View, SeekBar selector, easy to use, and rich in customization.漂亮的区间选择器,贝塞尔曲线优雅实现
Stars: ✭ 252 (-41.53%)
Mutual labels:  seekbar
Swagpoints
An Android custom circular SeekBar that supports max/min range and step settings.
Stars: ✭ 300 (-30.39%)
Mutual labels:  seekbar
Boxedverticalseekbar
A vertical seekbar for Android
Stars: ✭ 133 (-69.14%)
Mutual labels:  seekbar
Protractorview
A semicircular seekbar view for selecting angle from 0° to 180° ✨
Stars: ✭ 204 (-52.67%)
Mutual labels:  seekbar
SeekBarWithIntervals
No description or website provided.
Stars: ✭ 53 (-87.7%)
Mutual labels:  seekbar
Hueseekbar
Yet another android seekbar inspired from Philips Hue app
Stars: ✭ 100 (-76.8%)
Mutual labels:  seekbar
Discreteslider
A slider (SeekBar) with amazing value label.
Stars: ✭ 351 (-18.56%)
Mutual labels:  seekbar
Colorseekbar
A colorful SeekBar for picking color
Stars: ✭ 249 (-42.23%)
Mutual labels:  seekbar
Bubbleseekbar
A beautiful Android custom seekbar, which has a bubble view with progress appearing upon when seeking. 自定义SeekBar,进度变化更以可视化气泡样式呈现
Stars: ✭ 3,036 (+604.41%)
Mutual labels:  seekbar
Indicatorseekbar
A custom SeekBar on Android, which can be changed the size ,color , thumb drawable , tick drawable , tick text and indicator , also , will show an indicator view with progress above SeekBar when seeking. https://github.com/warkiz/IndicatorSeekBar
Stars: ✭ 1,836 (+325.99%)
Mutual labels:  seekbar
Rangeseekbar
A beautiful and powerful SeekBar what supports single、 range、steps、vetical、custom( 一款美观强大的支持单向、双向范围选择、分步、垂直、高度自定义的SeekBar)
Stars: ✭ 2,037 (+372.62%)
Mutual labels:  seekbar
RangeSeekBar
Android Range Seekbar library that support Min & Max Value for API level >= 16 and support Step Value
Stars: ✭ 97 (-77.49%)
Mutual labels:  seekbar
Waveformseekbar
Android Waveform SeekBar library
Stars: ✭ 120 (-72.16%)
Mutual labels:  seekbar
Multislider
Multi functional slider/seekbar( / rangebar / scrubber) for Android
Stars: ✭ 309 (-28.31%)
Mutual labels:  seekbar
Kotlin Playground
Kotlin practice
Stars: ✭ 111 (-74.25%)
Mutual labels:  seekbar
andColorPicker
Color picker library for Android
Stars: ✭ 233 (-45.94%)
Mutual labels:  seekbar
Arc Seekbar
Android 圆弧形 SeekBar。
Stars: ✭ 357 (-17.17%)
Mutual labels:  seekbar
Android Slidr
Another android slider / seekbar, but different :-)
Stars: ✭ 326 (-24.36%)
Mutual labels:  seekbar
react-native-range-slider
A high-quality, cross platform, native iOS range slider for react native. A slider, similar in style to UISlider, but which allows you to pick a minimum and maximum range; inspired by react-native-range-slider
Stars: ✭ 46 (-89.33%)
Mutual labels:  seekbar

VerticalSeekBar

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

Maven Central Android Arsenal


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 Centeral. Just add these lines to build.gradle.

repositories {
+     mavenCentral()
}

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

Usage

Layout XML

<!-- This library requires pair of the VerticalSeekBar and VerticalSeekBarWrapper classes -->
<com.h6ah4i.android.widget.verticalseekbar.VerticalSeekBarWrapper
    android:layout_width="wrap_content"
    android:layout_height="150dp">
    <com.h6ah4i.android.widget.verticalseekbar.VerticalSeekBar
        android:id="@+id/mySeekBar"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:splitTrack="false"
        app:seekBarRotation="CW90" /> <!-- Rotation: CW90 or CW270 -->
</com.h6ah4i.android.widget.verticalseekbar.VerticalSeekBarWrapper>

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

Java code

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

License

This library is licensed under the Apache Software License, Version 2.0, and contains some source code files delivered from product of Android Open Source Project (AOSP).

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