VerticalSeekBar
Vertical SeekBar class which supports Android 2.3 - 7.x.
Screenshots
Gingerbread | ICS | Lollipop | Marshmallow |
---|---|---|---|
Download the demo app on Google Play
Target platforms
- from Android 2.3.x (Gingerbread)
- to Android 7.x (Nougat)
Latest version
- Version 0.7.2 (March 12, 2017)
Getting started
This library is published on jCenter. Just add these lines to build.gradle
.
dependencies {
compile 'com.h6ah4i.android.widget.verticalseekbar:verticalseekbar:0.7.2'
}
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.