VerticalSeekBar

Additional

Language
Java
Version
0.7.0 (Jun 4, 2016)
Created
Jan 11, 2015
Updated
Aug 21, 2023
Owner
Haruki Hasegawa (h6ah4i)
Contributors
Haruki Hasegawa (h6ah4i)
Andrew Orobator (AOrobator)
Rúben Sousa (rubensousa)
3
Activity
Badge
Generate
Download
Source code

VerticalSeekBar

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


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.

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