Skip to content

h6ah4i/android-verticalseekbar

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages